/* ==========================================================================
   STC Platform - Auth Modal Utilities (Tailwind Supplement)
   ========================================================================== */

/* انیمیشن برای نمایش مراحل */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   سفارشی‌سازی ظاهر SweetAlert2
   ========================================================================== */
.swal2-container { z-index: 9999999 !important; }

.swal2-popup.stc-custom-swal {
    border-radius: 12px !important;
    border: 1px solid #D9E2EC !important;
    box-shadow: 0 10px 30px rgba(16, 42, 67, 0.15) !important;
    padding: 20px !important;
    width: max-content !important;
    min-width: 320px !important;
    font-family: inherit !important;
}

.swal2-title.stc-custom-swal-title { color: #102A43 !important; font-size: 15px !important; font-weight: 800 !important; }
.swal2-html-container.stc-custom-swal-text { color: #334E68 !important; font-size: 13.5px !important; }

.swal2-confirm.stc-custom-swal-btn { 
    background-color: #102A43 !important; color: #ffffff !important; 
    border-radius: 6px !important; border: none !important; box-shadow: none !important; outline: none !important; 
    transition: background-color 0.2s ease !important;
}
.swal2-confirm.stc-custom-swal-btn:hover, .swal2-confirm.stc-custom-swal-btn:focus {
    background-color: #243B53 !important; color: #ffffff !important; box-shadow: none !important; outline: none !important;
}