/* Button styles */
.nextBttn {   
    width: 30%;
    justify-content: center;
    background-color: #ffcb1a;
    color: #191919;
    border: none;
    margin-top: 20px;
    font-size: 18px;
    border-radius: 7px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nextBttn:hover {
    background-color: #c7a314;
    color: black;
}

.genericInputs{
    display: flex;
    width: 95%;
    border-bottom: 1px solid #e1e3d8;
    border-radius: 0 0 0 4px;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    background: none;
    transition: background-color 0.4s ease;
}

.genericInputs:hover{
    background-color: #090909;
}
.radioBttn{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-evenly;
}

.radio{
    display: inline-block;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #ffffff;
}

.mainLabels{
    padding: 10px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500; 
    text-align: center;
    width: 100%;
}