
.containerform{
    max-width: 700px;
    width: 100%;
    background: rgba(255, 255, 255, 0.115);
    border-radius: 0.5rem;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1),
                0px 5px 12px -2px rgba(0, 0, 0, 0.1),
                0px 18px 36px -6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
   
    color: black !important;
    
}

.containerform .formtitle{

    background: #eeecec;
    color: black;
    font-size: 20px;
    font-weight: 800;
    padding: 10px;

}

.containerform form .formtitle p{
    font-size: 25px;
    font-weight: 500;
    position: relative;
}

.containerform form .formtitle p::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, #F37A65, #D64141);

}

.user_details{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px;
}

.user_details .input_box{
    width: calc(100% / 2 - 20px);
    margin: 0 0 12px 0;
}

.input_box label{
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    color: rgb(255, 255, 255) !important;
}

.input_box label::after{
    content: " *";
    color: red;
}

.input_box input{
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    padding-left: 15px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    background-color: #f6f8fa;
    font-family: 'Poppins', sans-serif;
    transition: all 120ms ease-out 0s;
}


.input_box input:focus,
.input_box input:valid{
    box-shadow: 0px 0px 0px 2px #AC8ECE;
}

form .gender{
    padding: 0px 25px;
}

.gender .gender_title{
    font-size: 20px;
    font-weight: 500;
}

.gender .category{
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
}

.gender .category label{
    display: flex;
    align-items: center;
    cursor: pointer;
}

.gender .category label .dot{
    height: 18px;
    width: 18px;
    background: #d9d9d9;
    border-radius: 50%;
    margin-right: 10px;
    border: 4px solid transparent;
    transition: all 0.3s ease;
}

#radio_1:checked ~ .category label .one,
#radio_2:checked ~ .category label .two,
#radio_3:checked ~ .category label .three{
    border-color: #d9d9d9;
    background: #D64141;
}

.gender input{
    display: none;
}

.reg_btn{
    padding: 25px;
    margin: 15px 0;
}

.reg_btn input{
    height: 45px;
    width: 25%;
    border: none;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(to right, #ceca24, #ceca24);
    border-radius: 5px;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.reg_btn input:hover{
    background: linear-gradient(to right, #ede81a, #ede81a);
}

@media screen and (max-width: 584px){

    .user_details{

        overflow-y: scroll;
    }

    .user_details::-webkit-scrollbar{
        width: 0;
    }

    .user_details .input_box{
        width: 100%;
    }

    .gender .category{
        width: 100%;
    }

}


@media screen and (max-width: 419px){
    .gender .category{
        flex-direction: column;
    }   
}



input::placeholder {
    color: #999 !important; /* Set your desired color */
}

textarea {
    width: 100% !important;
    height: 150px !important; /* Adjust height as needed */
    padding: 10px !important;
    border: none !important;
    outline: none !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    padding-left: 15px !important;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
    background-color: #f6f8fa !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 120ms ease-out 0s !important;
}
