/* login.css - Magische Inlogpagina Styling */

/* 1. Algemene Inlog Introductie */
.login-intro {
    padding: 20px;
    margin-bottom: 35px;
    text-align: center;
    color: #bfaecf;
    background: radial-gradient(circle at top, rgba(106, 13, 173, 0.2), transparent 70%);
}

.intro-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
    max-width: 500px;
}

.gift-box {
    margin-bottom: 15px;
    padding: 12px !important;
    background: rgba(212, 175, 55, 0.05) !important;
    border: 1px dashed #d4af37 !important;
    border-radius: 10px;
    animation: goldPulse 3s infinite;
}

/* 2. De Inlogkaart */
.account-status-section .login-card, 
.login-card {
    background: linear-gradient(135deg, rgba(30, 18, 43, 0.8), rgba(15, 7, 22, 0.9)) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(214, 175, 55, 0.3) !important;
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(214, 175, 55, 0.1) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(214, 175, 55, 0.2) !important;
}

.login-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    color: var(--accent, #d4af37);
}

/* 3. Formulieren & Knoppen */
.form-group input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.1) !important;
}

.btn-gold {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #d4af37, #f3e5ab) !important;
    color: #000 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: #fff !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* 4. Extra Effecten */
.error-msg {
    font-size: 0.8rem;
    color: #ff6b6b;
    background: rgba(231, 76, 60, 0.1);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

.footer-links {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-links a {
    color: var(--accent, #d4af37) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: #fff !important;
    border-bottom: 1px solid #d4af37;
}

.animate-bounce {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes goldPulse {
    0% { border-color: rgba(212, 175, 55, 0.3); }
    50% { border-color: rgba(212, 175, 55, 0.8); }
    100% { border-color: rgba(212, 175, 55, 0.3); }
}

@media (max-width: 480px) {
    .login-card { padding: 15px; }
}
