*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
    height: 100%;
}
body{
    height: 100%;
    background-color: #DEE1E6;
}
form{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    overflow: auto;
}
.header , .content {
    width: 100%;
}
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 20px;
}
.header .logo_box{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}
.header .logo_box img{
    max-width: 100%;
}
.header .name_text{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 15px;
}
.header .name_text .header-text{
    font-size: 40px;
}
.header .name_text img{
    height: 70px;
    width: auto;
}

.header .desc_text{
    font-size: 30px;
    font-weight: 600;
    color: #636161;
    width: 100%;
    text-align: center;

}
.content{
    display: flex;
    flex-direction: column;
}
.content_row:first-child{
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    overflow-y: auto;
}
.content_row:first-child>div{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.content_row:first-child>div .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 300px;
}
.content_row:first-child>div.content_left{
    align-items: flex-end;
    padding-right: 15px;
}
.content_row:first-child>div.content_right{
    align-items: flex-start;
    padding-left: 15px;
}
.content .img_box{
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.content .img_box .header-name{
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #6E7780;
}
.content img{
    max-width: 200px;
}
.content .input-box{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.content input{
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    font-size: 20px;
    padding: 5px;
    padding: 5px 10px;
    border-radius: 5px;
}
.content_row:nth-child(2){
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #070707;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}
.content_row:nth-child(2) a{
    color: #2351a5;
    text-decoration: none;
}
/* .content input.his {
    border-bottom: 3px solid #88A1A8;
}
.content input.her{
    border-bottom: 3px solid #EC6293;
}
.content input:focus{
    border-bottom: 3px solid orange;
} */

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.footer button{
    width: 100px;
    height: 40px;
    border: none;
    outline: none;
    background-color: #6E7780;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.footer button:active{
    background-color: white;
    color: #6E7780;
    transform: scale(1.05);
}
@media (max-width:576px) {
    form{
        height: fit-content;
    }
    .content_row:first-child:first-child{
        flex-direction: column;
        gap: 30px;
    }
    .content_row:first-child>div{
        width: 100%;
    }
    .content_row:first-child>div img{
        max-width: 130px;
        position: relative;
        top: 10px;
    }
    .content_row:first-child>div.content_left , .content_row:first-child>div.content_right{
        padding: 0;
        justify-content: center;
        align-items: center;
    }
    .content_row:nth-child(2){
        flex-direction: column;
        gap: 20px;
    }
    .header{
        margin-bottom: 30px;
    }
}