.login-container,
.login-conatiner{
    width: 100%;
    height: 100%;
    float: left;
    /* background-color: #adffd5; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 3% 0; */
}
.login-sec{
    width: 65em;
    height: auto;
    float: left;
    border-radius: 10px;
    box-shadow: 0 0 15px 2px var(--box);
    background-color: white;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin: 0 2em;
}
.login-form-sec{
    width: 51%;
    height: auto;
    float: right;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.login-title{
    width: 96%;
    height: auto;
    float: left;
    margin-top: 0;
    font-size: 35px;
    padding: 1%;
    display: flex;
    align-items: center;
    border: 4px dashed var(--box);
    border-radius: 10px;
}
.login-form{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-box{
    width: 80%;
    float: left;
    display: flex;
    flex-direction: column;
}
.login-ele{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-direction: column;
    margin-bottom: 3%;
}
.login-ele label{
    width: 100%;
    height: auto;
    float: left;
    margin-bottom: 0.5em;
}
.login-ele :where(input,textarea){
    width: 100%;
    height: auto;
    float: left;
    border: none;
    background-color: var(--shape);
    outline: none;
    padding: 0.6em 4%;
    border-radius: 10px;
    /* margin-top: 2%; */
    box-sizing: border-box;
}
.login-img{
    width: 44%;
    height: auto;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1%;
    background-color: var(--shape);
}
.login-img img{
    width: 100%;
    height: auto;
    float: left;
}
.login-btn{
    width: 100px;
    height: auto;
    float: left;
    background-color: var(--buy-btn);
    border: none;
    padding: 0.6em 4%;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 1%;
    transition: 0.3s;
    font-size: 15px;
}
.login-btn:hover{
    background-color: var(--buy-btn-hover);
    transition: 0.3s;
}
.login-text{
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 4%;
}
.login-text a{
    color: var(--box);
    text-decoration: none;
    margin-right: 1%;
}
.feild-alert{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: center;
    margin-top: 1%;
    font-size: 14px;
    color:red;
}
.feild-alert i{
    margin-left: 4px;
    font-size: 18px;
}
.login-tab{
    width: 100%;
    height: auto;
    float: left;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    margin-bottom: 1.5em;
    padding-bottom: 1em;
    border-bottom: 2px solid var(--more);
}
.login-tab li{
    width: fit-content;
    float: right;
    list-style: none;
    margin-left: 0.5em;
}
.login-tab a{
    width: 7em;
    padding: 0.4em;
    background-color: transparent;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid var(--btn-outline);
}
.code-sec{
    display: none;
}
.active-tab{
    background-color: var(--btn-hover) !important;
    color: white;
}
.back-home{
    width:fit-content;
    height: auto;
    float: left;
    background-color: var(--off);
    border: none;
    padding: 0.8em 1.5em;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
    color: white;
    position: absolute;
    top: 2em;
    right: 3em;
    display: flex;
    align-items: center;
}
.back-home i{
    margin-right: 10px;
}
.back-home:hover{
    background-color: var(--off);
    transition: 0.3s;
}
.pass-ele{
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.pass-ele input{
    width: 90%;
}
.show-pass-btn{
    width: 2.8em;
    height: 2.8em;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 10px;
    background-color: var(--more);
    color: black;
    cursor: pointer;
    font-size: 15px;
    padding: 0;
    margin-right: 0.5em;
}
@media only screen and (max-width: 960px) {
    html, body {
        height: 100%;
        /* display: flex; */
    }
}
@media only screen and (max-width: 750px) {
    .login-sec{
        width: 100%;
    }
    .login-img{
        display: none;
    }
    .login-form-sec {
        width: 96%;
    }
    .login-title {
        justify-content: center;
        font-size: 25px;
    }
    .login-box{
        width: 90%;
    }
}
@media only screen and (max-width: 550px) {
    .login-sec {
       margin:  0;
    }
    .login-box{
        width: 100%;
    }
    .login-box,.login-btn{
        /* width: 100px; */
    }
    .login-ele label{
        font-size: 13px;
    }
}
