
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonts */
@font-face {
    font-family: Gotham-Medium;
    src: url(../fonts/Gotham\ Medium.otf);
}

body{
    font-family: 'Gotham-Medium';
}

/* Header Start */
header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.2rem 0 1.1rem 0;
    background-color: #fff;
}
header img{
    width: 180px;
}
/* Header End */

/* Banner Start */
.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f5e2d2;
}
.banner .layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 1;
}
.banner .swiper-container {
    width: 100%;
    overflow: hidden;
}
.banner .swiper-wrapper {
    transition-timing-function: linear !important;
    display: flex;
}
.banner .swiper-slide {
    width: 40%;
    flex-shrink: 0;
}
.banner .swiper-slide img {
    width: 100%;
    display: block;
}
/* Banner End */

/* Form Start */
.form-section{
    padding: 4rem 0;
}
.form-section h1{
    text-align: center;
    color: rgb(68, 68, 68);
    font-weight: 550;
}
form{
    width: 50%;
    margin: 4rem auto;
}
form .input-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
form .input-box label{
    width: 30%;
    color: rgb(68, 68, 68);
    font-size: calc(0.7rem + 0.5vw);
}
form .input-box input,
form .input-box select{
    width: 70%;
    padding: 1rem 1rem;
    border: none;
    outline: 2px solid #444;
    border-radius: 7px;
    font-size: calc(0.7rem + 0.5vw);
    font-family: 'Gotham-Medium';
    background-color: #fff;
}
form .input-box input:focus,
form .input-box select:focus{
    outline: 2px solid rgb(68, 68, 68);
}
form .input-box input[type="number"]::-webkit-inner-spin-button{
    display: none;
}
form .input-box .left,
form .input-box .right{
    width: 48.5%;
    margin-top: 1rem;
}
form .input-box .left input,
form .input-box .right input,
form .input-box .right select{
    width: 100%;
    margin-top: 0.8rem;
}
form #otp-input-box{
    align-items: start;
}
form #otp-input-box label{
    margin-top: 0.9rem;
}
form .input-box .otp-box{
    width: 70%;
}
form .input-box .otp-box input{
    width: 100%;
}
form .input-box .otp-box .otp-btn-row{
    display: flex;
    justify-content: space-between;
}
form .input-box .otp-box button{
    width: 48.5%;
    background-color: #444;
    transition: all 0.3s ease;
}
form .input-box .otp-box button:hover{
    background-color: #333;
}
form #interest-input-box{
    align-items: start;
}
form .input-box .radio-group{
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
form .input-box .radio-group label{
    white-space: nowrap;
    /* color: #000; */
}
form .input-box .radio-group input{
    width: auto;
    outline: none;
    margin-right: 7px;
    scale: 1.05;
    accent-color: rgb(68, 68, 68);
}
form button{
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 0;
    background-color: #e71e39;
    color: #fff;
    font-weight: 500;
    font-size: calc(0.6rem + 0.5vw);
    font-family: 'Gotham-Medium';
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
}
form button:hover{
    background-color: #c80e27;
}
/* Form End */

/* Media Queries */
@media screen and (max-width: 768px){
    header{
        padding: 1rem 0 0.9rem 0;
    }
    header img{
        width: 150px;
    }

    .form-section{
        padding: 2rem 1rem;
    }
    .form-section h1{
        font-size: calc(1.1rem + 0.5vw);
    }
    form{
        width: 100%;
        margin: 2.5rem auto;
    }
    form .input-box{
        margin-bottom: 1.2rem;
    }
    form .input-box label{
        width: 35%;
    }
    form .input-box input,
    form .input-box select{
        width: 65%;
        padding: 0.75rem 0.5rem;
        outline: 1.5px solid #444;
        font-size: calc(0.8rem + 0.5vw);
    }
    form .input-box input:focus,
    form .input-box select:focus{
        outline: 1.5px solid rgb(68, 68, 68);
    }
    form .input-box .left,
    form .input-box .right{
        width: 48%;
        margin-top: 0.6rem;
    }
    form .input-box .left input,
    form .input-box .right input{
        margin-top: 0.6rem;
    }
    form #otp-input-box label{
        margin-top: 0.7rem;
    }
    form .input-box .otp-box button{
        width: 48%;
        font-size: calc(0.65rem + 0.5vw);
    }
    form #interest-input-box{
        flex-direction: column;
    }
    form .input-box .radio-group{
        width: 100%;
        margin-top: 1.2rem;
        gap: 1.5rem;
    }
    form .input-box .radio-group input{
        margin-right: 5px;
        scale: 1.03;
        outline: none;
    }
    form button{
        margin-top: 1rem;
        padding: 0.8rem 0;
        font-size: calc(0.8rem + 0.5vw);
    }
}