body {
    position: relative;
    font-family: Montserrat, sans-serif;
    background: transparent url(/netcat/modules/gw_support/assets/img/auth-background-new.png) no-repeat center;
    background-size: cover;
    height: 100vh;
}

.auth-message {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 410px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 50px 0;
}

.auth-message .logo {
    margin-bottom:  86px;
}

.auth-message .caption,
.auth-message .message-text {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 125%;
    font-weight: 500;
}

.auth-message .caption {
    padding-bottom: 35px;
    border-bottom: 2px solid #fff;
}

.auth-message .auth-btn-submit {
    width:  100%;
    padding: 30px;
    color: #154CB7;
    background-color: #F0F0F0;
    border: 1px solid transparent;
    border-radius: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.auth-message .auth-btn-submit:hover {
    background-color: #fff;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.auth-message .auth-btn-submit:focus {
    background-color: #fff;
    border: 1px solid #306BFD;
    outline: none;
}

.auth-message .auth-btn-submit:disabled {
    color: #888D94;
    opacity: 1;
}

.no-access {
    font-size: 18px;
    line-height: 21px;
}

.no-access:first-child {
    margin-bottom: 12px;
}

.no-access a {
    color: inherit;
}

.auth-login-form {
    width: 100%;
}

.message-error-code {
    position: absolute;
    bottom: 24px;
    width: 100%;
    color: #B1CAEA;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .auth-message {
        padding: 20px 0;
    }

    .auth-message .logo {
        margin-bottom: 20px;
    }

    .auth-message .caption {
        padding-bottom: 20px;
    }

    .auth-message .caption,
    .auth-message .message-text {
        margin-bottom: 20px;
    }
}