/* Auth layout — plain corporate styling */
:root {
    --auth-primary: #129e80;
    --auth-primary-dark: #0f866d;
    --auth-ink: #212529;
    --auth-muted: #6c757d;
}

.auth-layout {
    background: #fff;
    color: var(--auth-ink);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.auth-site-header,
.auth-site-footer {
    flex-shrink: 0;
}

.auth-main {
    flex: 1 0 auto;
    padding: 1rem 0;
}

.auth-brand-text {
    color: var(--auth-ink);
    font-size: 1rem;
    font-weight: 600;
}

.auth-card {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background: #fff;
    box-shadow: none;
}

.auth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.auth-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    color: var(--auth-ink);
}

.auth-subtitle {
    font-size: 0.95rem;
    color: var(--auth-muted);
    margin-bottom: 0;
}

.auth-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.75rem;
    border-radius: 0.25rem;
    background: #f8f9fa;
    color: var(--auth-muted);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid #dee2e6;
}

.auth-card .form-control,
.auth-card .form-select {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    padding: 0.5rem 0.75rem;
    background-color: #fff;
}

.auth-card .form-control:focus,
.auth-card .form-select:focus {
    border-color: var(--auth-primary);
    box-shadow: 0 0 0 0.2rem rgba(18, 158, 128, 0.15);
}

.auth-card .input-group .btn {
    border-radius: 0 0.375rem 0.375rem 0;
}

.auth-card .btn-primary {
    background-color: var(--auth-primary);
    border-color: var(--auth-primary);
}

.auth-card .btn-primary:hover {
    background-color: var(--auth-primary-dark);
    border-color: var(--auth-primary-dark);
}

.auth-card .alert {
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.auth-card .text-secondary {
    color: var(--auth-muted) !important;
}

.auth-card .link-primary {
    color: var(--auth-primary);
    text-decoration: none;
}

.auth-card .link-primary:hover {
    color: var(--auth-primary-dark);
    text-decoration: underline;
}

.auth-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #dee2e6;
}

.auth-summary-row:last-child {
    border-bottom: none;
}

@media (max-width: 576px) {
    .auth-card .card-body {
        padding: 1.25rem;
    }

    .auth-logo {
        width: 78px;
        height: 78px;
    }

    .auth-brand-text {
        font-size: 0.9rem;
    }
}
