/* ============================================
   AUTH ALERTS - Success & Error Messages
   ============================================ */

.alert {
    padding: 16px 20px;
    margin: 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    animation: slideDown 0.3s ease;
    backdrop-filter: blur(10px);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Alert */
.alert-success {
    background: linear-gradient(135deg, #d4edda, #c8e6d9);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-success i {
    color: #28a745;
}

/* Error Alert */
.alert-error {
    background: linear-gradient(135deg, #f8d7da, #ffe5e7);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-error i {
    color: #dc3545;
}

.alert i {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert div,
.alert ul {
    margin: 0;
    flex: 1;
}

.alert li {
    margin: 4px 0;
}

.alert a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.alert a:hover {
    text-decoration: none;
}