/* Shared foundation, messages, links, and primary actions for account access pages. */

.login-page-body,
.auth-page-body,
.verify-email-body {
    min-height: 100vh;
    background: #100b08;
}
.login-submit,
.auth-button,
.verify-email-button {
    min-height: 49px;
    border: 0;
    border-radius: 14px;
    background: #f25a00;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 14px 26px rgba(242, 90, 0, 0.18);
    transition: background-color 160ms ease, transform 160ms ease;
}
.auth-button,
.verify-email-button {
    margin-top: 8px;
}

.login-submit:hover,
.login-submit:focus,
.auth-button:hover,
.auth-button:focus,
.verify-email-button:hover,
.verify-email-button:focus {
    background: #ff6508;
    color: #ffffff;
}

.login-submit:active,
.auth-button:active,
.verify-email-button:active {
    transform: translateY(1px);
}
.auth-message {
    margin: -8px 0 18px;
    padding: 0 6px;
    color: #ff9d64;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.6;
    text-align: center;
    overflow-wrap: anywhere;
}

.auth-message.is-success {
    color: #8ce6b8;
}
.auth-link {
    color: #f25a00;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.auth-link:hover,
.auth-link:focus {
    color: #ff7a2a;
}
