/* ============================================
   AUTHENTICATION PAGES STYLES (Login/Register)
   ============================================ */

/* Auth Card Container */
.auth-card {
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.auth-card .card-body {
    padding: 3rem;
}

.auth-card h2 {
    color: var(--slate-900);
    font-weight: 600;
}

/* Alert Messages */
.auth-alert {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.auth-alert-success {
    background: var(--green-50);
    color: var(--green-700);
    border: 1px solid var(--green-100);
}

.auth-alert-error {
    background: var(--red-50);
    color: var(--red-700);
    border: 1px solid var(--red-100);
}

.auth-alert-info {
    background: var(--cyan-50);
    color: var(--cyan-700);
    border: 1px solid var(--cyan-100);
}

.auth-alert-warning {
    background: var(--amber-50);
    color: var(--amber-700);
    border: 1px solid var(--amber-100);
}

/* Form Labels */
.auth-label {
    font-weight: 500;
    color: var(--slate-700);
}

/* Form Inputs */
.auth-input {
    border-color: var(--slate-300);
    transition: all 0.15s ease;
}

.auth-input:focus {
    border-color: var(--slate-900);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
    outline: none;
}

.auth-input::placeholder {
    color: var(--slate-400);
}

/* Form Text / Help Text */
.auth-form-text {
    color: var(--slate-500);
    font-size: 0.875rem;
}

/* Form Check Label */
.auth-check-label {
    color: var(--slate-600);
    font-size: 0.875rem;
}

/* Auth Button (Primary) */
.auth-button {
    background: var(--slate-900);
    color: white;
    border: 1px solid var(--slate-900);
    font-weight: 500;
    transition: all 0.15s ease;
    border-radius: 0.375rem;
}

.auth-button:hover {
    background: var(--slate-800);
    border-color: var(--slate-800);
    color: white;
}

/* Divider */
.auth-divider {
    border-color: var(--slate-200);
    margin: 1.5rem 0;
}

/* Auth Link */
.auth-link {
    color: var(--slate-900);
    font-weight: 500;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
    color: var(--slate-900);
}

/* Auth Footer Text */
.auth-footer-text {
    color: var(--slate-600);
    font-size: 0.9375rem;
}
