/**
 * Auth Modal — Estilos del modal de autenticación
 * Extraído de assets/js/auth.js
 */

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.auth-modal-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.auth-modal-content {
    text-align: center;
}

.auth-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    animation: pulse 2s infinite;
}

.auth-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.auth-modal-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.auth-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-modal-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-modal-btn-primary {
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.auth-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.auth-modal-btn-secondary {
    background: white;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.auth-modal-btn-secondary:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
}

.auth-modal-btn-text {
    background: transparent;
    color: #999;
    padding: 10px;
}

.auth-modal-btn-text:hover {
    color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
