.main{
    height: 100%;
}
.universal{
    display: flex;
    height: 100%;
    font-size: 14px;
}
.universal > .content{
    height: 100vh;
    background: rgb(17, 17, 17);
    width:100%;
}
.form{
    background: #ffff;
    height: inherit;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: rgb(183 183 183 / 48%) 0px 0px 20px 3px;
}
.title{
    padding:50px 0;
    cursor: pointer;
}
.title img {
    width: 100%;
    display: block;
}
.form-group > input:not(#otp){
    width: 100%;
    padding: 5px 10px;
    outline: none;
    border: 1px solid #b6b7bb;
    border-radius:5px;
}
.form-group > .group{
    width: 100%;
    padding: 5px 10px;
    outline: none;
    border: 1px solid #b6b7bb;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
#otp::-webkit-outer-spin-button,
#otp::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.group > input{
    width: 90%;
}
.group > .send{
    font-size: 19px;
    padding: 0 5px;
    cursor:pointer;
}
.group > .cd{
    display: none;
    font-size: 14px;
    padding: 0 5px;
    cursor:pointer;
}
.group > .loading{
    display:none;
    position: relative;
}
form > button{
    width: 70px;
    line-height: 35px;
    border-radius: 10px;
    background: rgb(245, 245, 245);
    color: rgb(51, 51, 51);
    font-size: 14px;
    text-align: center;
    border:1px solid #b6b7bb;
}
.split-line::after {
    content: "";
    height: 1px;
    margin: 15px 32px;
    display: block;
    background-color: rgb(182 183 187);
    font-size: 0px;
    line-height: 0;
}
.form > p{
    text-align:center;
    margin-bottom:15px;
}
.form > .login-by{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin-bottom:10px;
}
a{
    color: #333;
}
a:hover,a:active{
    color: #333;
    text-decoration:none;
}
.form > .login-by > span{
    height: 40px;
    width: inherit;
    cursor: pointer;
    text-align:center;
}
.form > .login-by > span > a{
    cursor:not-allowed;
}
span > img{
    max-height:100%;
}
span > img{
    max-height:100%;
}
.error{
    position: absolute;
    width: 250px;
    display: flex;
    flex-direction: column;
    left: 50%;
    transform: translateX(-50%);
    flex-wrap: wrap;
    align-content: center;
}
.error > span{
    color: #c90000;
    padding: 10px;
    background: black;
    border: 2px solid #c90000;
    margin: 5px;
    border-radius: 5px;
    text-align: center;
    font-weight: bolder;
    box-shadow: 4px 5px 3px 0px #ff00004f;
}
#popup{
    position: absolute;
    width: 250px;
    display: flex;
    flex-direction: column;
    right: 0;
    top:0;
    transform: translateX(-50%);
    flex-wrap: wrap;
    align-content: center;
    z-index: 10000;
}
#popup > span{
    color: #c90000;
    padding: 10px;
    background: white;;
    border: 2px solid #c90000;
    margin: 5px;
    border-radius: 5px;
    text-align: center;
    font-weight: bolder;
    box-shadow: 4px 5px 3px 0px #ff00004f;
}
#popup > .success{
    color: #13c500;
    border: 2px solid #1dc70b;
    box-shadow: 4px 5px 3px 0px #1dc70b3b;
}
#popup > .error{
    color: #c90000;
    border: 2px solid #c90000;
    box-shadow: 4px 5px 3px 0px #ff00004f;
}
#change_pass > h4, .data_completed > h4{
    text-align: center;
    color: seagreen;
    font-weight: bold;
}
.form > a{
    text-align: center;
    font-weight: bold;
    border: 1px solid black;
    display: block;
    border-radius: 5px;
}