/* ========================================
   GUARDTECH ADMIN - AUTH PAGES (Login, etc.)
   Uses theme.css variables. Minimal styles only.
   ======================================== */

.auth-page {
    min-height: 100vh;
    background-color: var(--gt-bg-body);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    background: var(--gt-bg-card);
    border-radius: var(--gt-radius-lg);
    box-shadow: var(--gt-shadow);
    border: none;
}

.auth-logo {
    width: 4rem;
    height: 4rem;
    background: var(--gt-primary);
    border-radius: var(--gt-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gt-white);
}

.auth-logo svg {
    width: 2.5rem;
    height: 2.5rem;
}

.auth-title {
    color: var(--gt-text);
    font-weight: 700;
}

.auth-subtitle {
    color: var(--gt-text-muted);
}

.form-control:focus,
.form-check-input:focus {
    border-color: var(--gt-primary);
    box-shadow: 0 0 0 0.2rem var(--gt-focus-ring);
}

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

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.alert-danger {
    border-left: 4px solid var(--gt-danger);
}
