/* === ULTRA-PREMIUM SELLER FORGOT PASSWORD STYLES === */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@700;800;900&display=swap");

/* Root Variables - Unique MSFP Prefix */
:root {
    --msfp-primary-orange: #ff7a00;
    --msfp-orange-light: #ff9533;
    --msfp-orange-dark: #e66a00;
    --msfp-orange-glow: rgba(255, 122, 0, 0.4);
    --msfp-white: #ffffff;
    --msfp-cream: #f5e7da;
    --msfp-dark: #0d0d0d;
    --msfp-dark-light: #1a1a1a;
    --msfp-dark-medium: #222222;
    --msfp-dark-card: #181818;
    --msfp-success: #10b981;
    --msfp-error: #ef4444;
    --msfp-info: #3b82f6;
    --msfp-gradient-primary: linear-gradient(135deg, #ff7a00, #ff9533);
    --msfp-gradient-secondary: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    --msfp-gradient-glass: linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(255, 149, 51, 0.04));
    --msfp-gradient-card: linear-gradient(145deg, rgba(24, 24, 24, 0.95), rgba(34, 34, 34, 0.85));
    --msfp-gradient-mesh: radial-gradient(circle at 20% 50%, rgba(255, 122, 0, 0.12) 0%, transparent 50%),
                          radial-gradient(circle at 80% 80%, rgba(255, 149, 51, 0.08) 0%, transparent 50%);
    --msfp-shadow-primary: 0 25px 80px rgba(255, 122, 0, 0.35);
    --msfp-shadow-secondary: 0 15px 50px rgba(0, 0, 0, 0.6);
    --msfp-shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
    --msfp-shadow-intense: 0 35px 120px rgba(255, 122, 0, 0.5);
    --msfp-blur-glass: blur(25px);
    --msfp-border-radius: 20px;
    --msfp-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --msfp-transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Wrapper */
.msfp-page-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0f0f0f);
    color: var(--msfp-white);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    padding: clamp(40px, 8vh, 80px) 0;
}

/* Advanced Particle System */
.msfp-particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.msfp-particle-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.msfp-particles-orange .msfp-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--msfp-primary-orange), transparent);
    opacity: 0.3;
    animation: msfpFloatOrbit linear infinite;
}

.msfp-particles-white .msfp-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--msfp-cream), transparent);
    opacity: 0.25;
    animation: msfpFloatOrbit linear infinite reverse;
}

.msfp-particles-glow .msfp-glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15), transparent);
    filter: blur(60px);
    animation: msfpPulse 5s ease-in-out infinite;
}

/* Particle Definitions */
.msfp-particles-orange .msfp-particle-1 { width: 3px; height: 3px; left: 12%; top: 22%; animation-duration: 23s; }
.msfp-particles-orange .msfp-particle-2 { width: 5px; height: 5px; left: 78%; top: 28%; animation-duration: 27s; animation-delay: -5s; }
.msfp-particles-orange .msfp-particle-3 { width: 2px; height: 2px; left: 52%; top: 62%; animation-duration: 21s; animation-delay: -9s; }
.msfp-particles-orange .msfp-particle-4 { width: 4px; height: 4px; left: 32%; top: 78%; animation-duration: 25s; animation-delay: -13s; }
.msfp-particles-orange .msfp-particle-5 { width: 3px; height: 3px; left: 88%; top: 48%; animation-duration: 19s; animation-delay: -17s; }
.msfp-particles-orange .msfp-particle-6 { width: 6px; height: 6px; left: 22%; top: 42%; animation-duration: 29s; animation-delay: -4s; }

.msfp-particles-white .msfp-particle-1 { width: 2px; height: 2px; left: 28%; top: 38%; animation-duration: 25s; animation-delay: -3s; }
.msfp-particles-white .msfp-particle-2 { width: 4px; height: 4px; left: 72%; top: 18%; animation-duration: 21s; animation-delay: -7s; }
.msfp-particles-white .msfp-particle-3 { width: 3px; height: 3px; left: 42%; top: 72%; animation-duration: 27s; animation-delay: -11s; }
.msfp-particles-white .msfp-particle-4 { width: 5px; height: 5px; left: 82%; top: 72%; animation-duration: 23s; animation-delay: -15s; }

.msfp-particles-glow .msfp-glow-1 { width: 380px; height: 380px; left: 18%; top: 32%; }
.msfp-particles-glow .msfp-glow-2 { width: 460px; height: 460px; left: 72%; top: 58%; animation-delay: -4s; }

/* Gradient Overlay */
.msfp-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--msfp-gradient-mesh),
                radial-gradient(circle at 50% 50%, rgba(255, 122, 0, 0.05), transparent);
    pointer-events: none;
    z-index: 1;
    animation: msfpGradientShift 15s ease-in-out infinite;
}

/* Container */
.msfp-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* Content Wrapper */
.msfp-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
    min-height: clamp(600px, 80vh, 800px);
}

/* ======================== LEFT SIDE - SECURITY INFO ======================== */

.msfp-info-section {
    padding: clamp(30px, 5vw, 50px);
}

.msfp-info-content {
    max-width: 600px;
}

/* Security Icon with Rings */
.msfp-security-icon {
    position: relative;
    width: clamp(100px, 18vw, 140px);
    height: clamp(100px, 18vw, 140px);
    margin: 0 0 35px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msfp-icon-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.msfp-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 122, 0, 0.3);
    animation: msfpRingPulse 3s ease-in-out infinite;
}

.msfp-ring-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.msfp-ring-2 {
    width: 80%;
    height: 80%;
    animation-delay: 1s;
}

.msfp-ring-3 {
    width: 60%;
    height: 60%;
    animation-delay: 2s;
}

.msfp-security-icon.active .msfp-ring {
    animation-duration: 1.5s;
}

.msfp-security-icon > i {
    position: relative;
    z-index: 2;
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    background: var(--msfp-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--msfp-white);
    box-shadow: var(--msfp-shadow-intense);
    animation: msfpFloat 3s ease-in-out infinite;
}

.msfp-info-title {
    font-size: clamp(2.2rem, 5vw + 1rem, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--msfp-white);
}

.msfp-title-word {
    display: inline-block;
    margin-right: 12px;
}

.msfp-highlight {
    display: inline-block;
    background: var(--msfp-gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: msfpShimmer 3s ease-in-out infinite;
}

.msfp-info-subtitle {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: clamp(40px, 7vh, 60px);
}

/* Steps Container */
.msfp-steps-container {
    margin-bottom: clamp(35px, 6vh, 50px);
}

.msfp-steps-title {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 700;
    color: var(--msfp-white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.msfp-steps-title::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--msfp-gradient-primary);
    border-radius: 2px;
}

.msfp-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.msfp-step-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: clamp(18px, 3vw, 25px);
    background: rgba(24, 24, 24, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 122, 0, 0.2);
    transition: var(--msfp-transition);
}

.msfp-step-item:hover {
    transform: translateX(10px);
    border-color: var(--msfp-primary-orange);
    box-shadow: 0 10px 40px rgba(255, 122, 0, 0.25);
}

.msfp-step-number {
    width: clamp(45px, 7vw, 55px);
    height: clamp(45px, 7vw, 55px);
    background: var(--msfp-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 900;
    color: var(--msfp-white);
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.4);
}

.msfp-step-content {
    flex: 1;
}

.msfp-step-title {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--msfp-white);
    margin-bottom: 5px;
}

.msfp-step-text {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Security Features */
.msfp-security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.msfp-feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: clamp(12px, 2vw, 16px) clamp(18px, 3vw, 24px);
    background: rgba(24, 24, 24, 0.6);
    border-radius: 12px;
    border: 2px solid rgba(255, 122, 0, 0.2);
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--msfp-transition);
}

.msfp-feature-badge:hover {
    transform: translateY(-5px);
    border-color: var(--msfp-primary-orange);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.msfp-feature-badge i {
    color: var(--msfp-primary-orange);
    font-size: 1.2em;
}

/* ======================== RIGHT SIDE - RESET FORM ======================== */

.msfp-form-section {
    padding: clamp(20px, 4vw, 30px);
}

.msfp-form-card {
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(255, 122, 0, 0.2);
    max-width: 550px;
    margin: 0 auto;
}

.msfp-glass-morphism {
    background: var(--msfp-gradient-card);
    backdrop-filter: var(--msfp-blur-glass);
    box-shadow: var(--msfp-shadow-card);
}

/* Card Header */
.msfp-card-header {
    background: var(--msfp-gradient-primary);
    padding: clamp(35px, 6vh, 50px) clamp(25px, 4vw, 40px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.msfp-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: msfpRotate 20s linear infinite;
}

.msfp-header-icon {
    width: clamp(75px, 13vw, 95px);
    height: clamp(75px, 13vw, 95px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    animation: msfpBounce 2s ease-in-out infinite;
}

.msfp-header-icon i {
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--msfp-white);
}

.msfp-card-title {
    font-size: clamp(1.8rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 800;
    color: var(--msfp-white);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.msfp-card-subtitle {
    font-size: clamp(0.9rem, 1.8vw + 0.3rem, 1rem);
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

/* Card Body */
.msfp-card-body {
    padding: clamp(35px, 6vh, 50px) clamp(25px, 4vw, 40px);
}

/* Alerts */
.msfp-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    animation: msfpSlideIn 0.5s ease;
}

.msfp-alert i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.msfp-alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.msfp-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.msfp-alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: #ff6b6b;
}

/* Form */
.msfp-form {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 5vh, 30px);
}

.msfp-form-group {
    position: relative;
}

.msfp-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.9rem, 1.6vw + 0.3rem, 1rem);
    font-weight: 700;
    color: var(--msfp-white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.msfp-form-label i {
    color: var(--msfp-primary-orange);
    font-size: 1em;
}

.msfp-required {
    color: var(--msfp-primary-orange);
    margin-left: 3px;
}

/* Input Wrapper */
.msfp-input-wrapper {
    position: relative;
}

.msfp-input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--msfp-gradient-primary);
    transition: width 0.4s ease;
    border-radius: 0 0 12px 12px;
}

.msfp-input-wrapper.focused .msfp-input-border {
    width: 100%;
}

.msfp-input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 122, 0, 0.5);
    font-size: 1.2rem;
    pointer-events: none;
    transition: var(--msfp-transition-fast);
}

.msfp-input-wrapper.focused .msfp-input-icon {
    color: var(--msfp-primary-orange);
    transform: translateY(-50%) scale(1.1);
}

/* Form Input */
.msfp-form-input {
    width: 100%;
    padding: clamp(15px, 3vh, 20px) clamp(20px, 3.5vw, 25px);
    padding-right: 50px;
    background: rgba(24, 24, 24, 0.8);
    border: 2px solid rgba(255, 122, 0, 0.25);
    border-radius: 12px;
    color: var(--msfp-white);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-weight: 500;
    font-family: "Inter", sans-serif;
    transition: var(--msfp-transition);
}

.msfp-form-input:focus {
    outline: none;
    border-color: var(--msfp-primary-orange);
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.4), 0 5px 25px rgba(0, 0, 0, 0.3);
    background: rgba(24, 24, 24, 1);
    transform: translateY(-2px);
}

.msfp-form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.msfp-form-input.msfp-invalid {
    border-color: var(--msfp-error);
    animation: msfpShake 0.3s ease-in-out;
}

/* Error Message */
.msfp-error-message {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--msfp-error);
    font-weight: 500;
    animation: msfpFadeIn 0.3s ease;
}

/* Form Actions */
.msfp-form-actions {
    margin-top: clamp(5px, 2vh, 10px);
}

.msfp-btn-primary {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 3.5vh, 22px) clamp(40px, 7vw, 55px);
    background: var(--msfp-gradient-primary);
    color: var(--msfp-white);
    border: none;
    border-radius: 14px;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    cursor: pointer;
    transition: var(--msfp-transition);
    overflow: hidden;
    box-shadow: var(--msfp-shadow-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.msfp-btn-primary:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 40px 120px rgba(255, 122, 0, 0.5);
}

.msfp-btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.msfp-btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.msfp-btn-text {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.msfp-btn-text i {
    font-size: 1.2em;
}

.msfp-btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: msfpShine 3s ease-in-out infinite;
}

/* Back Link */
.msfp-back-link-wrapper {
    text-align: center;
    margin-top: clamp(10px, 3vh, 15px);
}

.msfp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: var(--msfp-transition-fast);
    position: relative;
}

.msfp-back-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--msfp-gradient-primary);
    transition: width 0.3s ease;
}

.msfp-back-link:hover {
    color: var(--msfp-primary-orange);
}

.msfp-back-link:hover::after {
    width: 100%;
}

.msfp-back-link i {
    transition: var(--msfp-transition-fast);
}

.msfp-back-link:hover i {
    transform: translateX(-5px);
}

/* Help Card */
.msfp-help-card {
    margin-top: clamp(25px, 5vh, 35px);
    padding: clamp(20px, 4vw, 28px);
    border-radius: 18px;
    border: 2px solid rgba(255, 122, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--msfp-transition);
}

.msfp-help-card:hover {
    border-color: var(--msfp-primary-orange);
    box-shadow: var(--msfp-shadow-primary);
    transform: translateY(-5px);
}

.msfp-help-icon {
    width: clamp(50px, 8vw, 65px);
    height: clamp(50px, 8vw, 65px);
    background: var(--msfp-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--msfp-white);
    flex-shrink: 0;
}

.msfp-help-content {
    flex: 1;
    text-align: left;
}

.msfp-help-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--msfp-white);
    margin-bottom: 5px;
}

.msfp-help-text {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.msfp-help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: var(--msfp-primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--msfp-transition-fast);
}

.msfp-help-link:hover {
    color: var(--msfp-orange-light);
}

/* Alternative Actions */
.msfp-alt-actions {
    text-align: center;
    margin-top: clamp(20px, 4vh, 30px);
    padding: clamp(20px, 4vw, 25px);
    background: rgba(24, 24, 24, 0.4);
    border-radius: 15px;
    border: 2px solid rgba(255, 122, 0, 0.15);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.msfp-alt-text {
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.msfp-alt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--msfp-primary-orange);
    text-decoration: none;
    font-weight: 700;
    transition: var(--msfp-transition-fast);
    position: relative;
}

.msfp-alt-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--msfp-gradient-primary);
    transition: width 0.3s ease;
}

.msfp-alt-link:hover {
    color: var(--msfp-orange-light);
}

.msfp-alt-link:hover::after {
    width: 100%;
}

/* Keyframe Animations */
@keyframes msfpFloatOrbit {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); opacity: 0.3; }
}

@keyframes msfpPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

@keyframes msfpRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes msfpFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes msfpFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

@keyframes msfpSlideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes msfpShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

@keyframes msfpBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes msfpFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.05); }
}

@keyframes msfpShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

@keyframes msfpShine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

@keyframes msfpGradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes msfpRingPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
}

/* ======================== RESPONSIVE BREAKPOINTS ======================== */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media screen and (max-width: 1200px) {
    .msfp-content-wrapper {
        gap: clamp(30px, 6vw, 60px);
    }
}

/* Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .msfp-content-wrapper {
        grid-template-columns: 1fr;
        gap: clamp(40px, 7vh, 60px);
    }
    
    .msfp-info-section {
        text-align: center;
        order: 2;
    }
    
    .msfp-info-content {
        max-width: 100%;
    }
    
    .msfp-security-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .msfp-steps-list {
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .msfp-security-features {
        justify-content: center;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .msfp-form-section {
        order: 1;
    }
}

/* Mobile Landscape (640px - 768px) */
@media screen and (max-width: 768px) {
    .msfp-page-wrapper {
        padding: clamp(30px, 6vh, 60px) 0;
    }
    
    .msfp-container {
        padding: 0 20px;
    }
    
    .msfp-card-header {
        padding: clamp(30px, 5vh, 40px) clamp(20px, 3vw, 30px);
    }
    
    .msfp-card-body {
        padding: clamp(30px, 5vh, 40px) clamp(20px, 3vw, 30px);
    }
    
    .msfp-step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .msfp-step-item:hover {
        transform: translateY(-5px);
    }
}

/* Mobile Portrait (480px - 640px) */
@media screen and (max-width: 640px) {
    .msfp-page-wrapper {
        padding: clamp(25px, 5vh, 50px) 0;
    }
    
    .msfp-container {
        padding: 0 15px;
    }
    
    .msfp-info-section {
        padding: clamp(20px, 4vw, 30px);
    }
    
    .msfp-form-section {
        padding: clamp(15px, 3vw, 25px);
    }
    
    .msfp-help-card {
        flex-direction: column;
        text-align: center;
    }
    
    .msfp-help-content {
        text-align: center;
    }
    
    .msfp-security-features {
        flex-direction: column;
        align-items: stretch;
    }
    
    .msfp-feature-badge {
        justify-content: center;
    }
}

/* Small Mobile (< 480px) */
@media screen and (max-width: 480px) {
    .msfp-page-wrapper {
        padding: 20px 0;
    }
    
    .msfp-card-header {
        padding: 25px 15px;
    }
    
    .msfp-card-body {
        padding: 25px 15px;
    }
    
    .msfp-steps-title::before {
        width: 30px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .msfp-step-item:hover,
    .msfp-btn-primary:hover,
    .msfp-help-card:hover,
    .msfp-feature-badge:hover {
        transform: none;
    }
    
    .msfp-step-item:active {
        transform: scale(0.98);
    }
    
    .msfp-btn-primary:active {
        transform: scale(0.97);
    }
    
    .msfp-form-input {
        min-height: 50px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .msfp-btn-primary {
        min-height: 56px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom Scrollbar */
.msfp-page-wrapper::-webkit-scrollbar {
    width: 10px;
}

.msfp-page-wrapper::-webkit-scrollbar-track {
    background: var(--msfp-dark);
}

.msfp-page-wrapper::-webkit-scrollbar-thumb {
    background: var(--msfp-gradient-primary);
    border-radius: 5px;
}

.msfp-page-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--msfp-orange-light);
}

/* Selection */
::selection {
    background: var(--msfp-primary-orange);
    color: var(--msfp-white);
}

::-moz-selection {
    background: var(--msfp-primary-orange);
    color: var(--msfp-white);
}

/* Focus Styles */
.msfp-form-input:focus-visible,
.msfp-btn-primary:focus-visible {
    outline: 3px solid var(--msfp-primary-orange);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .msfp-particles-container,
    .msfp-gradient-overlay,
    .msfp-info-section,
    .msfp-help-card,
    .msfp-alt-actions {
        display: none !important;
    }
    
    .msfp-page-wrapper {
        background: white !important;
        color: black !important;
    }
    
    .msfp-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .msfp-form-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* Ultra-wide screens */
@media screen and (min-width: 1600px) {
    .msfp-container {
        max-width: 1600px;
    }
}

/* Accessibility - High Contrast */
@media (prefers-contrast: high) {
    .msfp-form-input {
        border-width: 3px;
    }
    
    .msfp-btn-primary {
        border: 2px solid var(--msfp-white);
    }
}

/* Reduced Transparency */
@media (prefers-reduced-transparency: reduce) {
    .msfp-glass-morphism {
        backdrop-filter: none;
    }
    
    .msfp-form-input {
        background: rgba(24, 24, 24, 1);
    }
}