
.register_box{
    background-color: var(--register-box);
    padding: 50px 0px 30px 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.register_title{
    font-size: 32px;
    font-weight: 700;
    line-height: 30px;
    color: var(--register-title-color);
    text-align: center;
}
.register_box_container{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px;
}
.register_box_img{
    width: 45%;

}
.register_box_img img{
    width: 100%;
    /*height: 100%;*/
    height: auto;
}
.register_form{
    /*width: 100%;*/
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;


}
.input_container{
    display: flex;
    gap: 10px;
    /*flex-wrap: wrap;*/
}
.input_box{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}
.input_box span , input_box label{
    color: rgba(35, 31, 32, 0.8);
    font-size: 16px;
    font-weight: 400;
}
.input_box_input{
    padding: 10px;
    border: 1px solid var(--input-border--color);
}
.input_box input:focus-visible{
    border: 1px solid var(--input-focus-color);
    outline: none;
    background-color: var(--register-box);
}
.text_box{
    font-size:13px;
    font-weight: 500;
    color: rgb(104, 104, 104);
    margin-top: 5px;
}
.submit_form{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 25px;

}
.submit_form button{
    background: var(--submit-input-color);
    border: 2px solid var(--submit-input-color);
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: transform .3s, border .3s, background .3s, box-shadow .3s, opacity .3s, color .3s, -webkit-transform .3s;
    color: var(--main-color);
}
.submit_form button:hover{
    border-color: var(--submit-input-hover-color);
    background-color: var(--submit-input-hover-color);
    color: var(--submit-input-hover-txt-color);
}
.input_box span , .input_box lable{
    font-family: 'poppins';
}
.select_box {
    margin-top: 15px;
}

.file_box{
    margin-top: 25px;
}
.input_name{
    width: 50%;
}
/*details model*/
.details_model_box{
    display: flex;
    gap: 30px;
    padding: 20px;
    font-family: "poppins";
}
.details_model_box img{
    width: 50%;
    height: 100%;
    object-fit: contain;
}
.details_model_box .text{
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    color: var(--register-title-color);
    width: 50%;
    text-align: justify;
}
.header_model{
    height: 270px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 56px;
    font-weight: 700;
    color: var(--main-title-color);
    padding: 10px;
}
/* responsive */
@media screen and (max-width: 768px){

    /*.register_box_container{*/
    /*    flex-direction: column;*/

    /*}*/
    .register_box_img , .register_form{
        width: 100%;
    }
    .details_model_box{
        flex-direction: column;
    }
    .details_model_box img{
        width: 100%;
        height: 50%;

    }
    .details_model_box .text{

        width: 100%;
    }


}
@media screen and (max-width: 600px){
    .header_model{
        font-size: 30px;
    }
}
@media screen and (max-width: 450px){
    .input_container{
        flex-wrap: wrap;
    }
    .input_name {
        width: 100%;
    }


}