
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  .verify-section {
    display: none; /* по умолчанию */
  }

  .verify-section.visible {
    display: block;
    opacity: 1;
  }

  :root {
    --bg: #0b0913;
    --surface: rgba(255,255,255,0.04);
    --surface-border: rgba(255,255,255,0.08);
    --accent: #9b5de5;
    --accent2: #c77dff;
    --text: #f0eaff;
    --muted: rgba(240,234,255,0.45);
    --input-bg: rgba(255,255,255,0.05);
    --input-border: rgba(255,255,255,0.1);
    --input-focus: rgba(155,93,229,0.6);
    --modal-bg: rgba(18,12,30,0.92);
    --radius: 18px;
  }

  Добавь в register.css:
css

.policy-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 4px 0;
    user-select: none;
}

.policy-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid rgba(162, 89, 255, 0.5);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.policy-label input[type="checkbox"]:checked {
    background: #a259ff;
    border-color: #a259ff;
}

.policy-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.policy-label input[type="checkbox"]:hover {
    border-color: #a259ff;
    background: rgba(162, 89, 255, 0.1);
}

.policy-label .switch-link {
    color: #a259ff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.policy-label .switch-link:hover {
    color: #bf80ff;
}

  html, body { height: 100%; }

  body {
    font-family: 'Geologica', sans-serif;
    background: var(--bg);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
  }

  .bg-blob {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.35;
    animation: blobFloat 8s ease-in-out infinite;
  }
  .bg-blob.b1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #7b2ff7, transparent 65%);
    top: -120px; right: -100px;
  }
  .bg-blob.b2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #3a0ca3, transparent 65%);
    bottom: -80px; left: 10%;
    animation-delay: -4s;
    animation-duration: 11s;
  }
  @keyframes blobFloat {
    0%,100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.08) translateY(-18px); }
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239b5de5' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  .card {
    position: relative;
    z-index: 1;
    background: var(--modal-bg);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius);
    padding: 48px 44px;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(155,93,229,0.1);
    animation: cardIn .5s cubic-bezier(.16,1,.3,1) both;
  }
  @keyframes cardIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .sparkle { position: absolute; border-radius: 50%; pointer-events: none; }
  .sparkle.s1 { width:120px;height:120px; background:radial-gradient(circle,rgba(155,93,229,.22),transparent 70%); top:-30px; right:-30px; }
  .sparkle.s2 { width:80px;height:80px; background:radial-gradient(circle,rgba(199,125,255,.18),transparent 70%); bottom:-20px; left:-20px; }
  .star { position:absolute; font-size:18px; color:var(--accent2); opacity:.6; animation: starPulse 3s ease-in-out infinite; }
  .star.tl { top:18px; left:22px; }
  .star.br { bottom:18px; right:22px; animation-delay:-1.5s; }
  @keyframes starPulse { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:.9;transform:scale(1.15)} }

  .logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    text-align: center;
    margin-bottom: 6px;
  }
  .logo span { color: var(--accent2); }

  h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
    color: var(--text);
  }

  .form { display: flex; flex-direction: column; gap: 12px; }

  .modal-input {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: var(--text);
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
  }
  .modal-input::placeholder { color: var(--muted); }
  .modal-input:focus {
    border-color: var(--input-focus);
    box-shadow: 0 0 0 3px rgba(155,93,229,0.15);
  }

  .modal-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .4px;
    padding: 15px;
    transition: opacity .2s, transform .15s;
    width: 100%;
    margin-top: 4px;
  }
  .modal-btn:hover { opacity: .88; transform: translateY(-1px); }
  .modal-btn:active { transform: translateY(0); }
  .modal-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

  .divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    margin: 4px 0;
  }
  .divider::before, .divider::after { content:''; flex:1; height:1px; background: var(--input-border); }

  .google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: var(--text);
    cursor: pointer;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 13px;
    text-decoration: none;
    transition: background .2s, border-color .2s;
  }
  .google-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }

  .switch {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
  }
  .switch a { color: var(--accent2); text-decoration: none; font-weight: 600; }
  .switch a:hover { text-decoration: underline; }

  /* ── VERIFY SECTION ── */
  .verify-section {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .verify-section.visible { display: flex; }

  .verify-icon {
    width: 58px; height: 58px;
    background: linear-gradient(135deg, rgba(155,93,229,.25), rgba(199,125,255,.15));
    border: 1px solid rgba(155,93,229,.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
  }

  .verify-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .verify-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .verify-desc strong { color: var(--accent2); }

  .code-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
  }
  .code-box {
    width: 50px; height: 58px;
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: 12px;
    color: var(--text);
    font-family: 'Geologica', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    outline: none;
    transition: border-color .2s, box-shadow .2s, transform .1s;
    caret-color: var(--accent2);
  }
  .code-box:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(155,93,229,0.2);
    transform: scale(1.04);
  }
  .code-box.filled {
    border-color: rgba(155,93,229,.5);
    background: rgba(155,93,229,0.08);
  }
  .code-box.error {
    border-color: #f87171 !important;
    box-shadow: 0 0 0 3px rgba(248,113,113,0.18) !important;
    animation: shake .3s ease;
  }
  @keyframes shake {
    0%,100%{transform:translateX(0)}
    25%{transform:translateX(-4px)}
    75%{transform:translateX(4px)}
  }

  .verify-error {
    font-size: 13px;
    color: #f87171;
    margin-bottom: 12px;
    min-height: 18px;
    width: 100%;
    text-align: center;
  }

  .verify-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 15px;
    transition: opacity .2s, transform .15s;
    margin-bottom: 14px;
  }
  .verify-btn:hover { opacity: .88; transform: translateY(-1px); }
  .verify-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

  .resend-text {
    font-size: 13px;
    color: var(--muted);
  }
  .resend-text a { color: var(--accent2); text-decoration: none; font-weight: 600; cursor: pointer; }
  .resend-text a:hover { text-decoration: underline; }

  .spinner {
    display: inline-block;
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
  }
  @keyframes spin { to { transform: rotate(360deg); } }