/* =============================================
AUTHENTICATION FORM
   ============================================= */

/* Base styles for all authentication forms (mobile-first) */
.auth-container {
    padding: 1rem;
    max-width: 100%;
}

.auth-card {
    border-radius: var(--radius-lg, 12px);
    border: 1px solid #e5e7eb; /* gray-200 */
    background-color: #ffffff; /* white */
    padding: 1rem;
}

/* =============================================
FORM ELEMENTS
   ============================================= */

.form-label {
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937; /* gray-800 */
}

.form-control {
    border-radius: var(--radius-lg, 12px);
    border: 1px solid #d1d5db; /* gray-300 */
    padding: 0.75rem; /* space-3 */
    font-size: 1rem;
}

.form-control:focus {
    border-color: #0ea5e9; /* primary-500 */
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
}

.form-check-label {
    font-size: 0.875rem;
    color: #4b5563; /* gray-600 */
}

.alert-danger {
    background-color: #fef2f2; /* error background */
    color: #ef4444; /* error */
    border-radius: var(--radius-lg, 12px);
    font-size: 0.9rem;
    padding: 0.75rem; /* space-3 */
}

.text-muted {
    color: #6b7280; /* gray-500 */
}

/* =============================================
BRANDING & TEXT
   ============================================= */

/* The gradient text style */
.gradient-text {
    background: linear-gradient(90deg, #0ea5e9, #d946ef);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    transition: all 0.15s ease !important;
    cursor: pointer !important;
}

.gradient-text:hover {
    transform: scale(1.05) !important;
}

/* =============================================
RESPONSIVE LAYOUT
   ============================================= */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .auth-container {
        max-width: 600px;
    }
    h2.text-center {
        font-size: 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .auth-container {
        max-width: 1200px;
    }
    .auth-card {
        padding: 2.5rem;
    }
}