/* ============================================================
   Authentication pages (Login, Register, Forgot Password).
   Shared between all auth screens which use the EmptyLayout.
   ============================================================ */

/* Centered full-height container */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container--light {
    background: #fff;
}

.auth-container--gradient {
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}

/* Frosted card */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: transform 0.3s ease;
}

.login-button {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 12px !important;
    font-weight: bold !important;
    text-transform: none !important;
}

.emoji-header {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.welcome-title {
    font-weight: 800;
    color: #444;
}

.auth-avatar {
    height: 70px;
    width: 70px;
    font-size: 2rem;
}

.auth-icon-xl {
    font-size: 5rem;
}

.link-sm {
    font-size: 0.85rem;
}

.link-sm-bold {
    font-size: 0.85rem;
    font-weight: bold;
}
