/* Login */
#login-page {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    overflow: auto;
    background-image: url('images/bg-img-2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-logo {
    width: 260px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 64px;
    margin-bottom: 42px;
}

.login-logo > img {
    height: 44px;
}

.login-form {
    width: 296px;
    min-height: 476px;
    padding: 48px 28px 43px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 12px rgba(52, 63, 66, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 12px;
}

.login-divider {
    color: #606F73;
    font-size: 16px;
    text-align: center;
}

.login-label {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 12px;
    color: #606F73;
}

.login-label-large {
    font-weight: 600;
    font-size: 18px;
    line-height: 144.09%;
    color: #394447;
    display: block;
    margin-bottom: 24px;
}

.forget-password {
    margin-top: 42px;    
    color: #00763E;
    font-size: 14px;
    display: block;
}

.login-suggestion {
    display: block;
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
    margin: 40px auto 50px;
    background: rgba(25, 31, 32, 0.7);
    border-radius: 4px;
    padding: 10px 16px;
    width: 140px;
    line-height: 17px;
}

.login-suggestion:hover {
    text-decoration: none;
    color: #FFFFFF;
}

.discliamer-wrapper {
    height: 150px;
}

.warning-bottom {
    display: flex;
    position: absolute;
    bottom: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    align-content: flex-end;
    color: white;
    padding: 0 24px;
    line-height: 17px;
    font-size: 12px;
    margin:0;
    height: 150px;
    width: 100%;
    background: linear-gradient(180deg, rgba(25, 31, 32, 0) 0%, rgba(25, 31, 32, 0.9) 100%);
}
.clsDiscliamer {

}
.clsCopyright {
}

.error-message {
    color: #E02F4F;
    line-height: 18px;
    font-size: 14px;
    margin-top: 21px;
}

.error-message label {
    margin: 0;
}

@media only screen and (min-width: 600px) {
    .login-form {
        width: 400px;
        padding: 48px 80px 43px;
    }
}

@media only screen and (min-width: 1440px) {

}