/***** LOGIN ******/
.login-document-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5;
}

.login-document-curtain > .login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 525px;
    /*height: 335px;*/
    overflow: auto;
}


.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.login-cart {
    width: 445px;
    background-color: #f1f8ff;
    padding: 30px 40px;
    position: relative;
}

.login-form-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background-color: #9d9d9c;
    border-radius: 3px;
    width: 17px;
    height: 17px;
    text-align: center;
    line-height: 17px;
    background-image: url("/static/icons/login/close.png");
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}



.login-form-close:hover {
    background-color: #0089ce;
}

.site-logo {
    display: flex;
    justify-content: center;
}
.site-logo svg{
    fill: #144b98;
    width: 245px;
}

.login-cart label {
    display: block;
    margin-top: 10px;
    position: relative;
}
.login-cart .description {
    margin-top: 10px;
}

.auth-failed {
    font-size: 13px;
    color: #ff0000;
    margin-top: 10px;
}
.login-subtitle {
    font-size: 13px;
    color: #b2b2b2;
    text-align: center;
    padding: 10px 20px;
    width: 500px;
}

.login-subtitle span {
    font-size: 14px;
    color: #5a5a5a;
}
.login-document-curtain .login-subtitle span {
    color: #ffffff;
}

.input-title {
    font-size: 13px;
    color: #b2b2b2;
    margin-bottom: 5px;
}

.password-visibility-switch {

    position: absolute;
    width: 15px;
    height: 37px;
    /*background-color: #0d95e8;*/
    right: 10px;
    bottom: 0;
    background-image: url(/static/icons/login/eye.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.login-form-input {
    font-family: 'Century Gothic', sans-serif;
    font-size: 13px;
    padding: 10px;
    border: 1px solid #9d9d9c;
    border-radius: 3px;
    width: calc(100% - 22px);
    outline: none;
}

.alert-success {
    background-color: #1aab0030;
    border: 3px solid #0a5a00;
    padding: 30px;
    color: #2d3748;
    margin: 20px;
    border-radius: 3px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.login-cart .form-actions > a {
    color: #0089ce;
    text-decoration: none;
    font-size: 13px;
}

.form-actions > input[type=submit] {
    width: 240px;
    height: 30px;
    background-color: #0089ce;
    color: #ffffff;
    border: none;
    text-align: center;
    cursor: pointer;
    border-radius: 3px;
}
