/* ============================================================
   Extends auth.css
   ============================================================ */

.auth-form-wrap {
    animation: fadeSlideUp 0.35s ease both;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Info note below form */
.info-note {
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.6;
    margin-top: 8px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}
