.contant {
    max-width: 1200px;
    margin: auto;  
    font-family: sans-serif;
}

.login_box,
.footer_box {
    display: flex;
    justify-content: space-between;
    gap: 80px;
  

}

.login_box .right_box {
    width: 60%;
}

.login_box .left_box {
    width: max(340px,40%);;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.left_box .info_box {
    width: 340px;
}

.left_box img {
    width: 250px;
}
a{
    text-decoration: none;
}
.login_box .left_box input {
    background: #FFFFFF;
    border: 2px solid #ECECEC;
    box-shadow: 0px 4px 15px rgb(0 0 0 / 5%);
    border-radius: 10px;
    padding: 12px 18px;
    display: block;
    width: 100%;
    font-size: 16px;
    transition: 0.3s all;
    height: 52px;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.login_box .left_box form p{
    font-size: 12px;
    color: #727272;
}
.login_box .left_box form p a{
    color: blue;
    padding: 0 5px;
}
.login_box .left_box .info_box span {
    display: block;
    text-align: left;
    font-weight: 400;
    color: #ababab;
    font-size: 16px;
    margin: 20px 0;

}
.login_box .logo_box{
    text-align: center;
}
input:focus,textarea:focus {
    outline: none;
    border-color: var(--color1) !important;
    box-shadow: 0px 4px 15px rgb(26 37 171 / 13%) !important;
}

.register_btn {
    display: block;
    width: 100%;
    background: #f08c05;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 10px #1a25ab47;
    transition: 0.3s all;
    font-weight: 500;
    margin-top: 20px;
    height: 44px;
    cursor: pointer;
    font-size: 16px;
}

.register_btn:hover {
    opacity: 0.8;
}

.footer_box .title {
    font-size: 35px;
    font-weight: 800;
}

.footer_box .description {
    font-weight: 300;
    line-height: 1.8;
}

.footer_box>div {
    width: 50%;
}

.footer_box {
    gap: 20px;
    margin-top: 100px;
}
.footer_link{
    margin: 30px 0;
}
.footer_link .left_box{
    display: flex;
    gap: 15px;
    text-wrap: nowrap;
    flex-wrap: wrap;
}
.footer_link .left_box a{
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
    color: #bdbdbd;
    margin-right: 20px;
    transition: 0.3s all;
    cursor: pointer;
}
.footer_link .left_box a:hover{
    color: #727272;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
 .errors_box{
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    background-color: #df2323;
    width: 340px;
    position: absolute;
    top: 30px;
    right: 30px;
    line-height: 24px;
}
 .errors_box .close_errors{
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #df2323;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    top: -10px;
    right: -7px;
    font-size: 18px;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
    transition: 0.3s;
}
 .errors_box .close_errors:hover{
    transform: scale(1.2);
}

/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
@media only screen and (max-width: 1200px){
    .contant{
        padding: 20px;
    }
    .login_box, .footer_box{
        gap:30px
    }
}
@media only screen and (max-width:750px){
    .footer_box,.login_box,.footer_link{
        flex-direction: column;
    }
    .login_box > div,.left_box .info_box,.footer_box>div{
        width: 100% !important;
    }
    .footer_link .left_box a{
        font-size: 15px;
    }
    .footer_box .title{
        font-size: 25px;
    }
}
@media only screen and (max-width:750px){
    .footer_box .title{
        font-size: 20px;
    }
    .footer_link .left_box a{
        font-size: 12px;
    }
}