@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');


.bodyStyling {
    background-color: rgb(130, 106, 251);
    display: flex;
    align-items: center;
    justify-content: center;
}

.TopSection {
    padding: 0px 30px 0;
    


}

.longButton {
    width: 60%;
    height: 70px;
    padding: 10px;
    color:rgb(130, 106, 251);
    font-size: 2rem;
    font-weight: 900;
    border: none;
    
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: #ddd;
}
.formBody {
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    min-height: 130vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(130, 106, 251);
}

.formContainer {
    position: relative;
    max-width: 700px;
    width:100%;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 4px 3px 8px 1px rgb(98, 98, 97)
}

.formContainer header {
    font-size: 1.5rem;
    color: #333;
    font-weight: 500;
    text-align: center;

}

.formContainer .form {
    margin-top: 20px;

}


.form .input-box {
    width: 100%;
    margin-top: 20px;


}

.input-box input:hover {
    box-shadow: 1px 1px 1.5px 0.1px rgba(0,0,0,0.1);
}

.input-box .select-box:hover {
    box-shadow: 1px 1px 1.5px 0.1px rgba(0,0,0,0.1);
}


.form :where( .input-box input, .select-box)  {
    position: relative;
    height: 50px;
    width: 100%;
    outline: none;
    font-size: 1rem;
    color: #707070;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 15px;
}

.form .column {
    display: flex;
    column-gap: 15px;

}

.select-box select {
    height: 100%;
    width: 100%;
    border: none;
    background-color: #fff;
    color: #707070;
    font-size: 1rem;


}

.form button {
    height: 55px;
    width: 100%;
    color:#fff;
    font-size: 1rem;
    border: none;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 400;
    transition: all 0.3s ease;
    background-color: rgb(130, 106, 251)
}

.form button:hover {
    background-color: rgb(88, 56, 250)
    
}

.smallHeader {
    font-size: 1.4rem;
    font-weight: 650;
    margin: auto;
    width: 90%;

}
/* responsive */
@media screen and (max-width: 500px) {
    .form .column {
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 500px) {
    .formBody {
        min-height: 70vh;
    }

}

@media screen and (max-width: 500px) {
    .smallHeader {
        font-size: 1.2rem;
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .TopSection {
        margin-top: 300px;
        padding: 0px 10px 0;
        
    
    
    }
    
}


