:root {
    --gold: #D4AF37;
    --light-gold: #F5E6C8;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(30,41,59,0.92) 100%), 
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1583&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.gold-text {
    color: var(--gold);
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gold-btn {
    background: var(--gold);
    color: #0F172A;
    transition: all 0.3s ease;
}

.gold-btn:hover {
    background: #C9A227;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.3);
}

.gold-btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
}

.gold-btn-outline:hover {
    background: var(--gold);
    color: #0F172A;
}

.input-field {
    border-bottom: 2px solid #CBD5E1;
    transition: all 0.3s ease;
    background: transparent;
}

.input-field:focus {
    border-bottom-color: var(--gold);
    outline: none;
}

.logo-text {
    color: var(--primary);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
} 