      @font-face{font-family:'IRANSans';src:url('/assets/fonts/IRANSansXV.woff2') format('woff2');font-weight:100 900;font-style:normal;font-display:swap;}
      *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

      :root {
        --orange: #FF6B00;
        --orange-light: #FF8C33;
        --orange-pale: #FFF3E8;
        --gray-bg: #F2F2F2;
        --gray-text: #999;
        --gray-border: #E0E0E0;
        --dark: #1A1A1A;
        --white: #ffffff;
        --shadow: 0 8px 40px rgba(0,0,0,0.08);
        --radius: 16px;
      }

      body {
        font-family: 'IRANSans', sans-serif;
        background: var(--gray-bg);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        direction: rtl;
      }

      .page-wrapper {
        display: flex;
        width: 100%;
        min-height: 100vh;
      }

      .brand-panel {
        flex: 1;
        background: var(--gray-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        padding: 40px;
      }

      .brand-icon {
        height: 50%;
        border-radius: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: float 4s ease-in-out infinite;
      }

      .brand-icon svg { width: 100px; height: 100px; }

      @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
      }

      .brand-name { font-size: 28px; font-weight: 700; color: var(--orange); letter-spacing: 2px; }

      .form-panel {
        width: 440px;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 48px;
        box-shadow: 8px 0 40px rgba(0,0,0,0.06);
        position: relative;
        overflow: hidden;
      }

      .form-panel::before {
        content: '';
        position: absolute;
        top: -60px;
        left: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
        pointer-events: none;
      }

      .form-header { text-align: right; margin-bottom: 36px; }
      .form-header .subtitle { font-size: 13px; color: var(--gray-text); margin-bottom: 6px; }
      .logo { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
      .logo-heart { color: var(--orange); font-size: 20px; }
      .logo-text { font-size: 24px; font-weight: 700; color: var(--dark); }
      .logo-text span { color: var(--orange); }

      .step { display: none; }
      .step.active { display: block; animation: fadeSlide 0.35s ease; }

      @keyframes fadeSlide {
        from { opacity: 0; transform: translateX(20px); }
        to { opacity: 1; transform: translateX(0); }
      }

      .field-label { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 10px; display: block; }
      .input-wrap { position: relative; margin-bottom: 20px; }
      .input-wrap input {
        width: 100%;
        height: 52px;
        border: 1.5px solid var(--gray-border);
        border-radius: var(--radius);
        padding: 0 18px;
        font-family: 'IRANSans', sans-serif;
        font-size: 15px;
        color: var(--dark);
        direction: rtl;
        text-align: right;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
        background: var(--white);
      }
      .input-wrap input::placeholder { color: #C8C8C8; font-size: 13px; }
      .input-wrap input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,0.1); }
      .input-wrap input.error { border-color: #E53935; }

      .error-msg { font-size: 12px; color: #E53935; margin-top: -14px; margin-bottom: 14px; display: none; }

      .btn {
        width: 100%;
        height: 52px;
        border: none;
        border-radius: var(--radius);
        font-family: 'IRANSans', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.25s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }
      .btn-primary { background: var(--orange); color: var(--white); }
      .btn-primary:hover:not(:disabled) {
        background: var(--orange-light);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(255,107,0,0.3);
      }
      .btn-primary:disabled { background: #E0E0E0; color: var(--gray-text); cursor: not-allowed; }
      .btn-outline { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); margin-top: 12px; }
      .btn-outline:hover { background: var(--orange-pale); }

      .divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--gray-text); font-size: 12px; }
      .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-border); }

      .otp-desc { font-size: 13px; color: #555; text-align: right; margin-bottom: 24px; line-height: 1.8; }
      .otp-desc strong { color: var(--dark); }
      .otp-desc .edit-link { color: var(--orange); cursor: pointer; font-weight: 600; text-decoration: none; border-bottom: 1px dashed var(--orange); }

      .otp-boxes {
        display: flex;
        width: 100%;
        gap: 8px;
        margin-bottom: 24px;
        direction: ltr;
        unicode-bidi: isolate;
      }
      .otp-box {
        flex: 1 1 0;
        min-width: 0;
        width: 0;
        height: 60px;
        border: 1.5px solid var(--gray-border);
        border-radius: 14px;
        font-family: 'IRANSans', sans-serif;
        font-size: 22px;
        font-weight: 700;
        text-align: center;
        color: var(--dark);
        outline: none;
        transition: all 0.2s;
        background: var(--white);
        caret-color: var(--orange);
      }
      .otp-box:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,0,0.12); transform: scale(1.04); }
      .otp-box.filled { border-color: var(--orange); background: var(--orange-pale); color: var(--orange); }
      .otp-box.error-box { border-color: #E53935; background: #FFF5F5; animation: shake 0.4s ease; }

      @keyframes shake {
        0%, 100% { transform: translateX(0); }
        20% { transform: translateX(-6px); }
        40% { transform: translateX(6px); }
        60% { transform: translateX(-4px); }
        80% { transform: translateX(4px); }
      }

      .resend-row { text-align: center; font-size: 13px; color: var(--gray-text); margin-top: 16px; }
      .resend-row .resend-link { color: var(--orange); cursor: pointer; font-weight: 600; display: none; }
      .resend-row .timer { font-weight: 600; color: var(--dark); }

      .success-state { text-align: center; padding: 20px 0; }
      .success-icon {
        width: 72px;
        height: 72px;
        background: linear-gradient(135deg, #4CAF50, #66BB6A);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }
      @keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
      .success-icon svg { width: 36px; height: 36px; stroke: white; stroke-width: 3; fill: none; }
      .success-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
      .success-sub { font-size: 13px; color: var(--gray-text); }

      .spinner {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255,255,255,0.4);
        border-top-color: white;
        border-radius: 50%;
        animation: spin 0.6s linear infinite;
        display: none;
      }
      @keyframes spin { to { transform: rotate(360deg); } }
      .btn.loading .spinner { display: block; }
      .btn.loading .btn-text { display: none; }

      @media (max-width: 768px) {
        .brand-panel { display: none; }
        .form-panel { width: 100%; padding: 40px 28px; box-shadow: none; }
        .otp-boxes { gap: 6px; }
        .otp-box { height: 56px; font-size: 20px; border-radius: 12px; }
      }

/* Helpers (replace inline in Blade) */
.auth-page-logo {
  height: 25px;
  display: block;
  margin: 0 auto;
}
.btn-seller-link {
  text-decoration: none;
  text-align: center;
}
.auth-form-hidden {
  display: none !important;
}
.error-msg--center {
  text-align: center;
}
.auth-success-actions {
  margin-top: 16px;
  text-align: center;
}
.btn-home-link {
  text-decoration: none;
}
.brand-panel-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48px;
}
