    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #05050b;
      --card: rgba(12, 12, 24, 0.72);
      --line: rgba(255, 255, 255, 0.10);
      --text: #ffffff;
      --muted: rgba(255, 255, 255, 0.58);
      --soft: rgba(255, 255, 255, 0.38);
      --purple: #d695ff;
      --purple-2: #765ed8;
    }

    body {
      min-height: 100vh;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--bg);
      overflow-x: hidden;
    }

    .page {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 28px;
      isolation: isolate;
    }

    .page::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(5, 5, 12, 0.96) 0%, rgba(5, 5, 12, 0.78) 48%, rgba(5, 5, 12, 0.36) 100%),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80");
      background-size: cover;
      background-position: center;
      z-index: -2;
    }

    .page::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 74% 26%, rgba(196, 116, 229, 0.28), transparent 24%),
        linear-gradient(180deg, rgba(5, 5, 12, 0.06), rgba(5, 5, 12, 0.92));
      z-index: -1;
    }

    .wrap {
      width: min(430px, 100%);
    }

    .brand {
      display: block;
      margin-bottom: 32px;
      text-align: center;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 28px;
      text-decoration: none;
      color: #f7f0ed;
    }

    .brand span {
      color: var(--purple);
    }

    .auth-card {
      width: 100%;
      padding: 30px;
      border-radius: 34px;
      background: var(--card);
      border: 1px solid var(--line);
      backdrop-filter: blur(24px);
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    }

    h1 {
      margin-bottom: 22px;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 38px;
      line-height: 1.1;
      font-weight: 500;
      text-align: center;
    }

    h1 strong {
      font-weight: 500;
      background: linear-gradient(90deg, #d993ee, #f0a6c8, #c98cff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .notice-plan {
      padding: 13px 15px;
      border-radius: 18px;
      background: rgba(214, 149, 255, 0.10);
      border: 1px solid rgba(214, 149, 255, 0.18);
      color: rgba(255, 255, 255, 0.72);
      font-size: 13px;
      line-height: 1.45;
      margin-bottom: 16px;
      text-align: center;
    }

    .alert {
      padding: 13px 15px;
      border-radius: 18px;
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 16px;
      color: #ffd9e4;
      background: rgba(255, 70, 125, 0.10);
      border: 1px solid rgba(255, 120, 160, 0.22);
    }

    form {
      display: grid;
      gap: 15px;
    }

    .field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .label {
      display: block;
      color: rgba(255, 255, 255, 0.76);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .input-wrap {
      position: relative;
    }

    .input-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--purple);
      opacity: 0.92;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      font-size: 16px;
    }

    .input,
    .select {
      width: 100%;
      height: 58px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.075);
      color: #fff;
      padding: 0 16px 0 46px;
      font-size: 16px;
      outline: none;
      transition: 0.22s ease;
    }

    .select {
      padding-left: 16px;
      appearance: none;
      cursor: pointer;
    }

    .select option {
      color: #111;
    }

    .input::placeholder {
      color: rgba(255, 255, 255, 0.38);
    }

    .input:focus,
    .select:focus {
      border-color: rgba(216, 145, 255, 0.65);
      background: rgba(255, 255, 255, 0.105);
      box-shadow: 0 0 0 4px rgba(190, 104, 230, 0.13);
    }

    .input:disabled {
      color: rgba(255, 255, 255, 0.62);
      background: rgba(255, 255, 255, 0.045);
    }

    .input-with-toggle {
      padding-right: 52px;
    }

    .toggle-password {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 14px;
      color: rgba(255, 255, 255, 0.68);
      background: transparent;
      cursor: pointer;
    }

    .toggle-password:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .icon-svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .muted-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      color: var(--soft);
      font-size: 13px;
      margin-top: -2px;
    }

    .forgot,
    .switch-link,
    .back-home {
      color: var(--purple);
      text-decoration: none;
    }

    .forgot:hover,
    .switch-link:hover,
    .back-home:hover {
      text-decoration: underline;
    }

    .btn {
      width: 100%;
      min-height: 62px;
      border-radius: 19px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 18px;
      font-weight: 800;
      background: linear-gradient(135deg, #ce8be2, #6d58c9);
      box-shadow: 0 18px 40px rgba(125, 72, 196, 0.34);
      cursor: pointer;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      margin-top: 3px;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 24px 48px rgba(125, 72, 196, 0.48);
    }

    .switch-link,
    .back-home {
      display: block;
      text-align: center;
      margin-top: 18px;
      font-size: 14px;
    }

    .password-rules {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7px 12px;
      list-style: none;
      color: rgba(255, 255, 255, 0.44);
      font-size: 12px;
      line-height: 1.35;
      margin: 0 0 3px;
    }

    .password-rules li::before {
      content: "• ";
      color: var(--purple);
    }

    @media (max-width: 560px) {
      .page {
        align-items: flex-start;
        padding: 30px 16px 42px;
      }

      .page::before {
        background:
          linear-gradient(180deg, rgba(5, 5, 12, 0.72), rgba(5, 5, 12, 0.94) 58%, #05050b 100%),
          url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
        background-size: cover;
        background-position: center top;
      }

      .auth-card {
        padding: 22px;
        border-radius: 28px;
      }

      h1 {
        font-size: 34px;
      }

      .field-grid {
        grid-template-columns: 1fr;
      }

      .password-rules {
        grid-template-columns: 1fr;
      }

      .muted-row {
        align-items: flex-start;
        flex-direction: column;
      }
    }