﻿/* MFA Banner CSS Styling */
.mfa-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #e0f0ff, #cce5ff);
    border-left: 5px solid #007bff;
    padding: 15px 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 8px;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-in;
}

.mfa-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #007bff;
}

.mfa-text {
    font-size: 16px;
    color: #003366;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}