/* Auth pages enhancements */
/* Center the login card vertically within the main content area */
.main-content-login .auth-center {
    min-height: 70vh; /* enough space to center nicely without assuming exact header/footer heights */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Ensure the login card has a reasonable max width on wide screens */
.main-content-login .login-item {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    .main-content-login .auth-center {
        min-height: 60vh;
    }
}

/* Register call-to-action under login form */
.main-content-login .register-callout {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #666666;
}

.main-content-login .register-callout .register-text {
    display: inline-block;
    margin: 0 4px;
}

.main-content-login .register-callout .register-link {
    margin-left: 6px;
    color: #ab8e66; /* site gold */
    font-weight: 500;
}

.main-content-login .register-callout .register-link:hover {
    text-decoration: underline;
    color: #947656;
}
