/*be current*/
.logout-block{
    width: 90%;
    bottom:0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    display: none;
}
.logout-btn{
    width: 90%;
    padding: 5px;
    margin: 0 auto;
}
#login-btn{
    cursor: pointer;
    position: relative;
}
.logined:hover .logout-block{
    display: block;
}
.btn{
    background: #5250F2;
    color: #fff;
}
.btn[disabled]{
    background: #D5D5FF;
}
._hidden{
    display: none;
}
.modal-container,.message-container{
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .7);
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
}
.modal-container *{
    box-sizing: border-box;
}
.modal-inner,.message-inner{
    position: absolute;
    min-height: 50px;
    min-width: 30vw;
    max-width: 90vw;
    max-height: 100vh;
    width: 500px;
    height: max-content;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border: 1px solid #726FF5;
    border-radius: 24px;
    background: #150B2B;
    display: flex;
    padding: 20px 20px 30px;
    flex-direction: column;
}
.modal-inner .modal-close{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
}
.modal-inner .modal-header{
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
.modal-inner .modal-body{
    flex: 1;
    padding: 15px 0 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-inner .modal-body form{
    width: 100%;
}
.modal-form-label{
    font-weight: lighter;
    position: relative;
    font-size: 16px;
    margin:10px 0 15px;
    width: 100%;
}
.modal-form-input{
    display: block;
    height: 54px;
    min-width: 300px;
    width: 100%;
    outline: none;
    border: 1px solid #726FF5;
    padding-left: 20px;
    padding-right: 30px;
    border-radius: 4px;
    background: transparent;
    font-size: 16px;
    margin: 10px 0 5px;
}
.form-submit{
    width: 100%;
    max-width: 330px;
    height: 68px;
    border-radius: 15px;
    outline: none;
    background: #5250F2;
    box-shadow: inset 0px -3px 25px 1px rgba(255,255,255,0.51);
    color: #fff;
    display: block;
    margin: 20px auto 0;
}
.form-submit:hover{
    box-shadow: inset 0px -3px 25px 1px rgba(255,255,255,0.66);
    border: 1px solid #fff;
}
.eyes-icon{
    position: absolute;
    top: 35px;
    transform: translateY(50%);
    right: 10px;
    width: 20px;
    height: 20px;
}
.eyes-icon-disabled{
    opacity: 0.3;
}
/*be current end*/
.modal-inner .modal-body .login-btn{
    max-width: 456px;
    width: 100%;
    height: 68px;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    background: #150B2B;
    border: 1px solid #726FF5;
    outline: none;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: inset 0px -3px 25px 1px rgba(255,255,255,0.51);
}
.modal-inner .modal-body .login-btn svg{
    width: 28px;
    height: 28px;
    vertical-align: middle;
    margin-right: 20px;
}
.modal-inner .modal-body .login-btn:hover{
    background: #5250f2;
    border: 1px solid #fff;
    box-shadow: inset 0px -3px 25px 1px rgba(255,255,255,0.51);
}
.modal-inner .modal-body .forget-password{
    cursor: pointer;
    font-size: 16px;
    line-height: 18px;
    color: #6C6AF4;
    text-decoration: underline;
    margin-top: 15px;
}
.modal-inner .modal-body .register{
    margin-top: 15px;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
}
.modal-inner .modal-body .register .register-here{
    cursor: pointer;
    text-decoration: underline;
    color: #6C6AF4;
}
.error{
    color: #d58c1b;
    font-size: 12px;
}
