/* Auth pages — Login, Register, ForgotPassword, ResetPassword */

body { background: #060F14 !important; }

.auth-brand-mark {
    width: 72px;
    height: 72px;
    background: #060F14;
    border: 2px solid #5CE8C0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(92, 232, 192, 0.1);
}

.auth-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.auth-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.auth-card-header {
    background: #060F14;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #0A2530;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.auth-card-header i { color: #5CE8C0; }

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

.auth-card .form-label { color: #374151; font-weight: 600; font-size: 0.875rem; }

.auth-card .form-check-label { color: #374151; font-size: 0.9rem; }

.auth-card .form-text { color: #6b7280; font-size: 0.8rem; }

/* Input groups */
.input-group-text {
    background: #f8fafc;
    border-right: none;
    color: #9ca3af;
    min-width: 42px;
    justify-content: center;
}
.input-group .form-control,
.input-group .form-select {
    border-left: none;
}
.input-group .form-control:focus,
.input-group .form-select:focus {
    box-shadow: none;
}
.input-group:focus-within .input-group-text {
    border-color: #5CE8C0;
    color: #2EA882;
}
.input-group:focus-within .form-control,
.input-group:focus-within .form-select {
    border-color: #5CE8C0;
    box-shadow: none;
}

/* Submit button */
.btn-auth {
    background: #5CE8C0;
    color: #060F14;
    border: none;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.btn-auth:hover, .btn-auth:focus {
    background: #2EA882;
    color: #fff;
}

/* Links */
.auth-link { color: #5CE8C0; text-decoration: none; }
.auth-link:hover { color: #2EA882; text-decoration: underline; }
.auth-sep { color: rgba(255, 255, 255, 0.3); }
.auth-footer-text { color: rgba(255, 255, 255, 0.45); font-size: 0.875rem; }
.auth-footer-text a { color: #5CE8C0; text-decoration: none; }
.auth-footer-text a:hover { color: #2EA882; text-decoration: underline; }

/* Validation summary */
.auth-card ~ .alert-danger,
.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.alert-danger ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
