/* ---- ALERTS ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.alert-error {
    background: rgba(248,81,73,0.1);
    border: 1px solid rgba(248,81,73,0.3);
    color: #f85149;
}

.alert-success {
    background: rgba(57,211,83,0.1);
    border: 1px solid rgba(57,211,83,0.3);
    color: var(--accent);
}

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