/*
 * WrenchFlow Auth Pages
 *
 * Centred card layout for login, password reset, OTP verification, etc.
 * Used by both the tenant (users/) and customer (portal/) auth flows.
 */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
}

.auth-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.auth-card h1 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.auth-card .subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.auth-card p {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-login {
    width: 100%;
    padding: 0.7rem;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    font-family: inherit;
}

.btn-login:hover {
    background: var(--color-primary-hover);
}

.auth-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-primary);
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}
