/* ===== TURBOFLOW REGISTER THEME ===== */

html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    padding: 0;
    color: #111827;
    background: #f6f8fc;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  * {
    box-sizing: border-box;
  }
  
  a {
    color: inherit;
  }
  
  .tf-reg-page {
    min-height: 100vh;
    overflow: hidden;
    background:
      radial-gradient(circle at 8% 16%, rgba(37, 99, 235, 0.14), transparent 28%),
      radial-gradient(circle at 92% 12%, rgba(249, 115, 22, 0.16), transparent 28%),
      linear-gradient(135deg, #ffffff 0%, #f6f8fc 50%, #fff7ed 100%);
  }
  
  .tf-reg-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ===== FLOATING REFERRER TOAST ===== */
  
  .tf-reg-floating-toast {
    position: fixed;
    top: 96px;
    right: 22px;
    z-index: 1200;
    width: min(360px, calc(100vw - 32px));
    padding: 14px 54px 14px 14px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  
  .tf-reg-floating-toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background: #f1f5f9;
    cursor: pointer;
    transition: all 0.22s ease;
  }
  
  .tf-reg-floating-toast-close:hover {
    color: #ffffff;
    background: #111827;
  }
  
  .tf-reg-floating-toast-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    overflow: hidden;
    border-radius: 18px;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.08);
  }
  
  .tf-reg-floating-toast-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .tf-reg-floating-toast-content {
    min-width: 0;
  }
  
  .tf-reg-floating-toast-content span {
    display: block;
    margin-bottom: 3px;
    color: #64748b;
    font-size: 12px;
    font-weight: 850;
  }
  
  .tf-reg-floating-toast-content strong {
    display: block;
    color: #111827;
    font-size: 16px;
    font-weight: 950;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .tf-reg-floating-toast-icon {
    width: 42px;
    height: 42px;
    margin-left: auto;
    flex: 0 0 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6a00, #2563eb);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
  }
  
  .tf-reg-floating-toast-icon i {
    font-size: 21px;
  }
  
  /* ===== NAVIGATION ===== */
  
  .tf-reg-nav {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 14px 16px;
    background: rgba(246, 248, 252, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  
  .tf-reg-nav-wrap {
    width: 100%;
    max-width: 1240px;
    min-height: 68px;
    margin: 0 auto;
    padding: 10px 12px 10px 18px;
    border-radius: 26px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
  }
  
  .tf-reg-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    text-decoration: none;
    min-width: 0;
  }
  
  .tf-reg-brand-uploaded-logo {
    display: block;
    width: auto;
    max-width: 230px;
    max-height: 52px;
    object-fit: contain;
  }
  
  .tf-reg-brand-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
      radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
      linear-gradient(135deg, #ff6a00, #2563eb);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.25);
  }
  
  .tf-reg-brand-mark i {
    font-size: 23px;
  }
  
  .tf-reg-brand-name {
    color: #111827;
    font-size: 23px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1px;
    white-space: nowrap;
  }
  
  .tf-reg-nav-center {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px;
    border-radius: 20px;
    background: #f1f5f9;
  }
  
  .tf-reg-nav-center a {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #475569;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    transition: all 0.22s ease;
  }
  
  .tf-reg-nav-center a i {
    font-size: 16px;
  }
  
  .tf-reg-nav-center a:hover,
  .tf-reg-nav-center a.active {
    color: #ffffff;
    background: #111827;
    transform: translateY(-2px);
  }
  
  .tf-reg-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .tf-reg-login-link {
    min-height: 44px;
    padding: 0 17px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6a00, #2563eb);
    box-shadow: 0 15px 32px rgba(37, 99, 235, 0.24);
    font-size: 13px;
    font-weight: 950;
    text-decoration: none;
    transition: all 0.22s ease;
  }
  
  .tf-reg-login-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(249, 115, 22, 0.3);
  }
  
  /* ===== MAIN ===== */
  
  .tf-reg-main {
    position: relative;
    padding: 70px 0 92px;
  }
  
  .tf-reg-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(120deg, transparent 0 47%, rgba(37, 99, 235, 0.06) 47% 48%, transparent 48% 100%),
      linear-gradient(120deg, transparent 0 58%, rgba(249, 115, 22, 0.07) 58% 59%, transparent 59% 100%);
    background-size: 165px 165px;
    pointer-events: none;
  }
  
  .tf-reg-bg-shape {
    position: absolute;
    z-index: 0;
    border-radius: 999px;
    filter: blur(4px);
    pointer-events: none;
  }
  
  .tf-reg-bg-shape-one {
    width: 260px;
    height: 260px;
    left: -80px;
    top: 120px;
    background: rgba(37, 99, 235, 0.11);
  }
  
  .tf-reg-bg-shape-two {
    width: 300px;
    height: 300px;
    right: -110px;
    bottom: 40px;
    background: rgba(249, 115, 22, 0.12);
  }
  
  .tf-reg-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 52px;
    align-items: center;
  }
  
  /* ===== COPY ===== */
  
  .tf-reg-copy {
    max-width: 620px;
  }
  
  .tf-reg-eyebrow {
    width: fit-content;
    margin-bottom: 22px;
    padding: 10px 15px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1d4ed8;
    background: #dbeafe;
    border: 1px solid rgba(37, 99, 235, 0.14);
    font-size: 14px;
    font-weight: 950;
  }
  
  .tf-reg-eyebrow i {
    color: #f97316;
    font-size: 18px;
  }
  
  .tf-reg-copy h1 {
    max-width: 680px;
    margin: 0 0 22px;
    color: #111827;
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -3px;
  }
  
  .tf-reg-copy > p {
    max-width: 610px;
    margin: 0 0 30px;
    color: #526071;
    font-size: 17px;
    line-height: 1.75;
  }
  
  .tf-reg-benefits {
    display: grid;
    gap: 12px;
  }
  
  .tf-reg-benefits div {
    padding: 18px 18px;
    border-radius: 22px;
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
  }
  
  .tf-reg-benefits i {
    grid-row: span 2;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6a00, #2563eb);
    font-size: 23px;
  }
  
  .tf-reg-benefits strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 950;
  }
  
  .tf-reg-benefits span {
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
  }
  
  /* ===== REGISTER CARD ===== */
  
  .tf-reg-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 36px 94px rgba(15, 23, 42, 0.16);
  }
  
  .tf-reg-card-glow {
    position: absolute;
    top: -110px;
    right: -110px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background:
      radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 62%),
      radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 70%);
    pointer-events: none;
  }
  
  .tf-reg-form-head,
  .tf-reg-alert,
  .tf-reg-form {
    position: relative;
    z-index: 2;
  }
  
  .tf-reg-form-head {
    margin-bottom: 26px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
  
  .tf-reg-form-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6a00, #2563eb);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.24);
  }
  
  .tf-reg-form-icon i {
    font-size: 26px;
  }
  
  .tf-reg-form-head h2 {
    margin: 0 0 7px;
    color: #111827;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1.1px;
  }
  
  .tf-reg-form-head p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.55;
  }
  
  /* ===== ALERTS ===== */
  
  .tf-reg-alert {
    margin-bottom: 18px;
    padding: 15px;
    border-radius: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  
  .tf-reg-alert-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .tf-reg-alert-icon i {
    font-size: 20px;
  }
  
  .tf-reg-alert-body strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 950;
  }
  
  .tf-reg-alert-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .tf-reg-alert-body ul {
    margin: 0;
    padding-left: 18px;
  }
  
  .tf-reg-alert-body li {
    margin: 3px 0;
    font-size: 14px;
    line-height: 1.45;
  }
  
  .tf-reg-alert-error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid rgba(239, 68, 68, 0.18);
  }
  
  .tf-reg-alert-error .tf-reg-alert-icon {
    color: #ffffff;
    background: #ef4444;
  }
  
  .tf-reg-alert-success {
    color: #14532d;
    background: #f0fdf4;
    border: 1px solid rgba(34, 197, 94, 0.18);
  }
  
  .tf-reg-alert-success .tf-reg-alert-icon {
    color: #ffffff;
    background: #22c55e;
  }
  
  /* ===== FORM ===== */
  
  .tf-reg-form {
    display: grid;
    gap: 17px;
  }
  
  .tf-reg-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  
  .tf-reg-field {
    display: grid;
    gap: 8px;
  }
  
  .tf-reg-field label {
    color: #111827;
    font-size: 13px;
    font-weight: 950;
  }
  
  .tf-reg-input-wrap {
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    transition: all 0.22s ease;
  }
  
  .tf-reg-input-wrap:focus-within {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.42);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  }
  
  .tf-reg-input-wrap i {
    color: #2563eb;
    font-size: 20px;
  }
  
  .tf-reg-input-wrap input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #111827;
    background: transparent;
    font-size: 15px;
    font-weight: 800;
  }
  
  .tf-reg-input-wrap input::placeholder {
    color: #94a3b8;
    font-weight: 750;
  }
  
  .tf-reg-recaptcha-box {
    width: 100%;
    overflow: hidden;
    padding: 12px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
  }
  
  .tf-reg-error-text {
    color: #dc2626;
    font-size: 13px;
    font-weight: 800;
  }
  
  .tf-reg-agreement {
    padding: 15px;
    border-radius: 18px;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: #475569;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 800;
  }
  
  .tf-reg-agreement i {
    color: #2563eb;
    font-size: 20px;
    flex: 0 0 auto;
  }
  
  .tf-reg-agreement a {
    color: #2563eb;
    font-weight: 950;
    text-decoration: none;
  }
  
  .tf-reg-agreement a:hover {
    color: #ff6a00;
  }
  
  .tf-reg-submit-btn {
    width: 100%;
    min-height: 58px;
    margin-top: 4px;
    border: 0;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6a00, #2563eb);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.25);
    cursor: pointer;
    font-size: 15px;
    font-weight: 950;
    transition: all 0.23s ease;
  }
  
  .tf-reg-submit-btn i {
    font-size: 19px;
  }
  
  .tf-reg-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 58px rgba(249, 115, 22, 0.3);
  }
  
  .tf-reg-form-footer {
    margin-top: 4px;
    padding: 16px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    gap: 6px;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
  }
  
  .tf-reg-form-footer a {
    color: #111827;
    font-weight: 950;
    text-decoration: none;
  }
  
  .tf-reg-form-footer a:hover {
    color: #2563eb;
  }
  
  /* ===== BANNERS ===== */
  
  .tf-reg-banners {
    position: relative;
    z-index: 3;
    margin-top: 46px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: center;
  }
  
  .tf-reg-banner-box {
    width: 100%;
    max-width: 520px;
    padding: 18px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 52px rgba(15, 23, 42, 0.08);
  }
  
  .tf-reg-banner-adaptive {
    width: 468px;
    max-width: 100%;
    height: 60px;
    max-height: 60px;
    overflow: hidden;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tf-reg-banner-adaptive a,
  .tf-reg-banner-adaptive img,
  .tf-reg-banner-adaptive iframe,
  .tf-reg-banner-adaptive object,
  .tf-reg-banner-adaptive embed {
    display: block;
    width: 468px;
    max-width: 100%;
    height: 60px;
    max-height: 60px;
    margin: 0;
    padding: 0;
    border: 0;
  }
  
  .tf-reg-banner-adaptive img {
    object-fit: fill;
  }
  
  .tf-reg-banner-adaptive iframe {
    overflow: hidden;
  }
  
  /* ===== FOOTER ===== */
  
  .tf-reg-footer {
    position: relative;
    z-index: 3;
    padding: 0 0 28px;
  }
  
  .tf-reg-footer-wrap {
    padding: 20px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 22px;
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  
  .tf-reg-footer-brand {
    min-width: 0;
  }
  
  .tf-reg-footer-logo {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -0.4px;
    text-decoration: none;
  }
  
  .tf-reg-footer-uploaded-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 44px;
    object-fit: contain;
  }
  
  .tf-reg-footer-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
      radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.38), transparent 30%),
      linear-gradient(135deg, #ff6a00, #2563eb);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
  }
  
  .tf-reg-footer-mark i {
    font-size: 20px;
  }
  
  .tf-reg-footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .tf-reg-footer-links a {
    min-height: 38px;
    padding: 0 13px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    color: #475569;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.22s ease;
  }
  
  .tf-reg-footer-links a:hover {
    color: #ffffff;
    background: #111827;
    transform: translateY(-2px);
  }
  
  .tf-reg-footer-powered {
    min-height: 42px;
    padding: 0 15px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    background: #f1f5f9;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
  }
  
  .tf-reg-footer-powered a {
    color: #2563eb;
    font-weight: 950;
    text-decoration: none;
  }
  
  .tf-reg-footer-powered a:hover {
    color: #ff6a00;
  }
  
  /* ===== RESPONSIVE ===== */
  
  @media (max-width: 1120px) {
    .tf-reg-layout {
      grid-template-columns: 1fr;
      gap: 34px;
    }
  
    .tf-reg-copy {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }
  
    .tf-reg-eyebrow {
      margin-left: auto;
      margin-right: auto;
    }
  
    .tf-reg-copy > p {
      margin-left: auto;
      margin-right: auto;
    }
  
    .tf-reg-benefits {
      max-width: 820px;
      margin: 0 auto;
      grid-template-columns: repeat(3, 1fr);
    }
  
    .tf-reg-benefits div {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }
  
    .tf-reg-card {
      max-width: 820px;
      width: 100%;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 1040px) {
    .tf-reg-nav-wrap {
      grid-template-columns: 1fr;
      justify-items: center;
    }
  
    .tf-reg-brand {
      justify-content: center;
    }
  
    .tf-reg-nav-actions {
      display: none;
    }
  
    .tf-reg-footer-wrap {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }
  
    .tf-reg-footer-logo {
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  @media (max-width: 760px) {
    .tf-reg-nav {
      padding: 10px;
    }
  
    .tf-reg-nav-wrap {
      padding: 14px;
      border-radius: 22px;
    }
  
    .tf-reg-brand-uploaded-logo {
      max-width: 210px;
      max-height: 46px;
    }
  
    .tf-reg-brand-name {
      font-size: 20px;
    }
  
    .tf-reg-nav-center {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
    }
  
    .tf-reg-nav-center a {
      flex: 1 1 auto;
      justify-content: center;
      min-width: 92px;
    }
  
    .tf-reg-main {
      padding: 48px 0 64px;
    }
  
    .tf-reg-copy h1 {
      font-size: clamp(36px, 12vw, 54px);
      letter-spacing: -2px;
    }
  
    .tf-reg-copy > p {
      font-size: 16px;
    }
  
    .tf-reg-benefits {
      grid-template-columns: 1fr;
    }
  
    .tf-reg-card {
      padding: 24px;
      border-radius: 28px;
    }
  
    .tf-reg-form-head {
      display: grid;
      text-align: center;
      justify-items: center;
    }
  
    .tf-reg-form-head h2 {
      font-size: 30px;
    }
  
    .tf-reg-form-grid {
      grid-template-columns: 1fr;
    }
  
    .tf-reg-banners {
      margin-top: 34px;
    }
  
    .tf-reg-banner-box {
      max-width: 100%;
      padding: 14px;
      border-radius: 20px;
    }
  
    .tf-reg-footer-links {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .tf-reg-floating-toast {
      top: auto;
      right: 14px;
      bottom: 14px;
    }
  }
  
  @media (max-width: 430px) {
    .tf-reg-container {
      padding: 0 14px;
    }
  
    .tf-reg-brand {
      width: 100%;
      justify-content: center;
    }
  
    .tf-reg-brand-uploaded-logo {
      max-width: 190px;
      max-height: 44px;
    }
  
    .tf-reg-brand-name {
      white-space: normal;
    }
  
    .tf-reg-nav-center a {
      min-width: calc(50% - 6px);
    }
  
    .tf-reg-card {
      padding: 20px;
    }
  
    .tf-reg-input-wrap {
      min-height: 54px;
      border-radius: 16px;
    }
  
    .tf-reg-submit-btn {
      min-height: 56px;
      border-radius: 16px;
    }
  
    .tf-reg-agreement {
      display: grid;
      text-align: center;
      justify-items: center;
    }
  
    .tf-reg-form-footer {
      display: grid;
    }
  
    .tf-reg-banner-adaptive {
      transform: scale(0.72);
      transform-origin: center;
    }
  
    .tf-reg-banner-box {
      height: 78px;
    }
  
    .tf-reg-footer-wrap {
      padding: 18px;
      border-radius: 24px;
    }
  
    .tf-reg-footer-uploaded-logo {
      max-width: 190px;
      max-height: 42px;
    }
  
    .tf-reg-footer-links {
      display: grid;
      width: 100%;
    }
  
    .tf-reg-footer-links a,
    .tf-reg-footer-powered {
      width: 100%;
      justify-content: center;
    }
  
    .tf-reg-floating-toast {
      width: calc(100vw - 24px);
      right: 12px;
      bottom: 12px;
    }
  }

  /* ===== TURBOFLOW REQUEST VERIFICATION VIEW ===== */

.tf-verify-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 0.82fr);
    gap: 52px;
    align-items: center;
  }
  
  .tf-verify-copy {
    max-width: 690px;
  }
  
  .tf-verify-copy h1 {
    max-width: 720px;
    margin: 0 0 22px;
    color: #111827;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -3px;
  }
  
  .tf-verify-copy > p {
    max-width: 650px;
    margin: 0 0 30px;
    color: #526071;
    font-size: 18px;
    line-height: 1.75;
  }
  
  .tf-verify-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 12px;
    max-width: 760px;
  }
  
  .tf-verify-points div {
    padding: 18px 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
  }
  
  .tf-verify-points i {
    width: 42px;
    height: 42px;
    margin-bottom: 13px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6a00, #2563eb);
    font-size: 21px;
  }
  
  .tf-verify-points strong {
    display: block;
    margin-bottom: 6px;
    color: #111827;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 950;
  }
  
  .tf-verify-points span {
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 800;
  }
  
  .tf-verify-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 36px 94px rgba(15, 23, 42, 0.16);
  }
  
  .tf-verify-card-glow {
    position: absolute;
    top: -110px;
    right: -110px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background:
      radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 62%),
      radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 70%);
    pointer-events: none;
  }
  
  .tf-verify-form-head,
  .tf-verify-card .tf-reg-alert,
  .tf-verify-card .tf-reg-form {
    position: relative;
    z-index: 2;
  }
  
  .tf-verify-form-head {
    margin-bottom: 26px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
  
  .tf-verify-form-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6a00, #2563eb);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.24);
  }
  
  .tf-verify-form-icon i {
    font-size: 26px;
  }
  
  .tf-verify-form-head h2 {
    margin: 0 0 7px;
    color: #111827;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1.1px;
  }
  
  .tf-verify-form-head p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.55;
  }
  
  .tf-verify-note {
    padding: 15px;
    border-radius: 18px;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: #475569;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 800;
  }
  
  .tf-verify-note i {
    color: #2563eb;
    font-size: 20px;
    flex: 0 0 auto;
  }
  
  @media (max-width: 1120px) {
    .tf-verify-layout {
      grid-template-columns: 1fr;
      gap: 34px;
    }
  
    .tf-verify-copy {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }
  
    .tf-verify-copy > p {
      margin-left: auto;
      margin-right: auto;
    }
  
    .tf-verify-points {
      margin: 0 auto;
    }
  
    .tf-verify-card {
      max-width: 560px;
      width: 100%;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 760px) {
    .tf-verify-copy h1 {
      font-size: clamp(36px, 12vw, 54px);
      letter-spacing: -2px;
    }
  
    .tf-verify-copy > p {
      font-size: 16px;
    }
  
    .tf-verify-points {
      grid-template-columns: 1fr;
    }
  
    .tf-verify-card {
      padding: 24px;
      border-radius: 28px;
    }
  
    .tf-verify-form-head {
      display: grid;
      text-align: center;
      justify-items: center;
    }
  
    .tf-verify-form-head h2 {
      font-size: 30px;
    }
  }
  
  @media (max-width: 430px) {
    .tf-verify-card {
      padding: 20px;
    }
  
    .tf-verify-note {
      display: grid;
      text-align: center;
      justify-items: center;
    }
  }