* {
    padding: 0px;
    margin: 0px;
    background-color: black;
    color: white;
    font-size: 24px;
    line-height: 29px;
}
 
.main {
    width: 1181px;
    height: 712px;
    top: 154px;
    left: 198px;
    position: relative;
}
 
h1 {
    font-family: Inter;
    font-size: 64px;
    font-weight: 400;
    line-height: 77px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 40px;
}
 
.input-box {
    width: 1177px;
    border: none;
    height: 46.01px;
    margin-top: 5px;
    border-bottom: 1px solid white;
}
 
::placeholder {
    color: white;
}
 
input[type='radio']
/* input[type='checkbox'] */
 {
    position: absolute;
    left: -9999px;
}
 
/* Custom styling for radio buttons */
.radio-box {
    display: inline-block;
    position: relative;
    top: 20px;
}
 
.radio-box input[type='radio'] {
    opacity: 0;
    position: absolute;
}
 
.radio-box label {
    position: relative;
    padding-left: 35px; /* Adjust this value to control the size of the radio button */
    cursor: pointer;
}
 
.radio-box label::before {
    content: "";
    width: 25px; /* Adjust this value to control the size of the outer circle */
    height: 25px; /* Adjust this value to control the size of the outer circle */
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: black;
}
 
.radio-box input[type='radio']:checked + label::before {
    content: "";
    width: 25px; /* Match the size of the outer circle */
    height: 25px; /* Match the size of the outer circle */
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
}
/* End of custom styling for radio buttons */
 
.agree-box label::before{
    display: inline-block;    
    content: "";
    width: 20px;
    height: 20px;    
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);    
    background-color: black;      
    border: 1px solid white;
}
.agree-box input[type='checkbox']:checked + label::before{
    background-color: white;
}
.agree-box{
    display: block;
    position: relative;
    top: 40px;
}
.agree-box label{
    margin-left: 30px;
}

button {
    position: relative;
    width: 226px;
    height: 58px;
    top: 110px;
    background-color: white;
    color: black;
    font-family: Inter;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
}
.input-box[type="date"]{
text-transform: uppercase !important;
}