/* === Estilos de Página de Error de Autenticación === */

.error-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.error-container {
    text-align: center;
}

.error-heading {
    color: #dc2626;
    margin-top: 0;
}

.error-message {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 14px;
    margin: 16px 0;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.5;
}

.error-code {
    font-size: 12px;
    color: #999;
    margin-top: 12px;
    font-family: monospace;
    word-break: break-all;
}

.actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-direction: column;
}

.actions button {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.actions .retry {
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
    color: var(--accent);
}

.actions .retry:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 47, 183, 0.3);
}

.actions .home {
    background: transparent;
    color: var(--purple-600);
    border: 1px solid var(--purple-400);
}

.actions .home:hover {
    background: rgba(106, 47, 183, 0.05);
}

.error-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e6e3ea;
    font-size: 13px;
    color: #666;
}

.error-details p {
    margin: 8px 0;
}

.error-details ul {
    text-align: left;
    display: inline-block;
}

.error-details-contact {
    margin-top: 12px;
    color: #999;
}
