/* ============================================
   LUXURY LOGIN PAGE - Premium Authentication
   ============================================ */

/* Animated Gradient Background */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #f5f7fa, #c3cfe2, #d4af37, #4d9fff);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    font-family: 'Inter', sans-serif;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ============================================
   GLASSMORPHISM LOGINCARD
   ============================================ */
.luxury-login-container {
    width: 100%;
    max-width: 460px;
    margin: 2rem;
}

.luxury-login-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        0 20px 60px rgba(212, 175, 55, 0.2);
    animation: cardFadeIn 0.8s ease-out;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   HEADER SECTION
   ============================================ */
.luxury-login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.luxury-login-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--luxury-deep-charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.luxury-login-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* ============================================
   LUXURY FORM INPUTS
   ============================================ */
.luxury-form-group {
    margin-bottom: 1.5rem;
}

.luxury-form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
}

.luxury-form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #333;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
    box-sizing: border-box;
}

.luxury-form-input:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--luxury-champagne-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1),
        0 4px 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.luxury-form-input::placeholder {
    color: #999;
}

/* ============================================
   LUXURY BUTTON - Pill Shaped
   ============================================ */
.luxury-btn {
    width: 100%;
    padding: 16px;
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--luxury-deep-charcoal);
    background: linear-gradient(135deg, var(--luxury-champagne-gold), #f1c40f);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
}

.luxury-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f1c40f, var(--luxury-champagne-gold));
}

.luxury-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* ============================================
   ALERT MESSAGES
   ============================================ */
.luxury-alert {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    text-align: center;
    animation: alertSlideIn 0.5s ease-out;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luxury-alert-success {
    background: rgba(39, 174, 96, 0.2);
    color: #0f5132;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.luxury-alert-error {
    background: rgba(231, 76, 60, 0.2);
    color: #842029;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* ============================================
   FOOTER LINKS
   ============================================ */
.luxury-login-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.luxury-login-footer p {
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #555;
}

.luxury-login-footer a {
    color: var(--luxury-deep-charcoal);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.luxury-login-footer a:hover {
    color: var(--luxury-champagne-gold);
    text-decoration: underline;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 576px) {
    .luxury-login-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .luxury-login-header h2 {
        font-size: 1.8rem;
    }

    .luxury-form-input {
        padding: 12px 16px;
    }

    .luxury-btn {
        padding: 14px;
        font-size: 1rem;
    }
}