    :root {
      --bg-0: #07080f;
      --bg-1: #0b0c16;
      --line: rgba(255, 255, 255, 0.16);
      --line-soft: rgba(255, 255, 255, 0.08);
      --text: #ffffff;
      --muted: #c6cad7;
      --pink: #ef4f80;
      --pink-strong: #f85b8d;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 70% -10%, rgba(240, 84, 134, 0.24), transparent 40%),
        radial-gradient(circle at 18% 82%, rgba(255, 94, 120, 0.12), transparent 38%),
        linear-gradient(120deg, #07080d 0%, #090b16 42%, #08070f 100%);
    }

    .login-shell {
      position: relative;
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 24px;
      overflow: hidden;
      isolation: isolate;
    }

    .login-shell::before,
    .login-shell::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: 999px;
      filter: blur(0.3px);
      z-index: -1;
    }

    .login-shell::before {
      width: 620px;
      height: 620px;
      border: 2px solid rgba(248, 91, 141, 0.55);
      left: 28%;
      top: -170px;
      transform: rotate(18deg);
      box-shadow: 0 0 22px rgba(248, 91, 141, 0.35), inset 0 0 36px rgba(248, 91, 141, 0.12);
    }

    .login-shell::after {
      width: 860px;
      height: 860px;
      border: 1.5px solid rgba(248, 91, 141, 0.38);
      right: -260px;
      bottom: -400px;
      transform: rotate(8deg);
      box-shadow: 0 0 34px rgba(248, 91, 141, 0.2);
    }

    .login-card {
      width: min(1080px, 100%);
      min-height: min(680px, calc(100vh - 48px));
      border: 1px solid var(--line-soft);
      border-radius: 36px;
      background:
        url('img/login-img.webp');
      background-size: cover;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
      overflow: hidden;
      display: grid;
      grid-template-columns: 44% 56%;
    }

    .panel-left {
      position: relative;
      padding: 28px 30px;
      background: linear-gradient(180deg, rgba(5, 6, 12, 0.16), rgba(7, 8, 14, 0.38));
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .panel-left::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 56%, rgba(236, 76, 129, 0.2), transparent 45%);
      pointer-events: none;
    }

    .brand img {
      width: min(320px, 76%);
      max-width: 320px;
    }

    .hero-copy {
      position: relative;
      z-index: 1;
      max-width: 520px;
      margin-top: auto;
    }

    .hero-copy h1 {
      margin: 0;
      font-family: "Playfair Display", serif;
      font-weight: 500;
      font-size: clamp(30px, 2.7vw, 44px);
      line-height: 1.05;
      letter-spacing: -0.015em;
    }

    .hero-copy h1 span { color: #f17399; font-style: italic; }

    .hero-copy p {
      margin: 12px 0 0;
      max-width: 520px;
      font-size: clamp(16px, 1vw, 21px);
      line-height: 1.32;
      color: #e5e8f2;
    }

    .trust-row {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(3, minmax(120px, 1fr));
      gap: 16px;
    }

    .trust-item {
      display: grid;
      gap: 8px;
      justify-items: center;
      text-align: center;
    }

    .trust-dot {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(245, 87, 136, 0.56);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #f17399;
      font-size: 18px;
      box-shadow: 0 0 12px rgba(244, 84, 136, 0.22);
    }

    .trust-item span {
      color: #ebedf4;
      font-size: 18px;
      line-height: 1.25;
    }

    .panel-right {
      padding: 28px 30px;
      display: grid;
      place-items: center;
      background: radial-gradient(circle at 80% 0%, rgba(39, 44, 83, 0.2), transparent 40%);
    }

    .form-wrap {
      width: min(580px, 100%);
      padding: 18px 18px 16px;
      border-radius: 26px;
      border: 1px solid var(--line-soft);
      background: linear-gradient(120deg, rgba(9, 10, 18, 0.8), rgba(11, 12, 22, 0.78));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .lock-dot {
      margin: 0 auto 10px;
      display: flex;
      justify-content: center;
    }

    .lock-dot img {
      width: min(195px, 54%);
      height: auto;
      display: block;
    }

    .form-wrap h2 {
      margin: 0;
      text-align: center;
      font-family: "Playfair Display", serif;
      font-size: clamp(28px, 2vw, 38px);
      font-weight: 500;
      line-height: 1.1;
    }

    .form-wrap h2 span { color: #f3739a; }

    .subtitle {
      margin: 6px 0 12px;
      text-align: center;
      color: var(--muted);
      font-size: 22px;
    }


    .error {
      margin: 0 0 12px;
      color: #ff8ba7;
      font-size: 15px;
      padding: 14px 16px;
      border: 1px solid rgba(255, 117, 155, 0.45);
      border-radius: 12px;
      background: rgba(94, 24, 39, 0.25);
    }

    .field { margin-bottom: 10px; }

    .field label {
      display: block;
      margin-bottom: 6px;
      color: #eceef6;
      font-size: 20px;
    }

    .input-wrap {
      display: flex;
      align-items: center;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 14px;
      background: transparent;
      min-height: 54px;
      padding: 0 12px;
      box-shadow: inset 0 0 0 1px rgba(242, 111, 153, 0.08);
    }

    .input-wrap input {
      width: 100%;
      border: 0;
      outline: none;
      background: transparent;
      color: #ffffff;
      font-size: 20px;
      padding: 7px 4px;
      font-family: "Manrope", sans-serif;
    }

    .input-wrap input::placeholder { color: #8f95a6; }
    .icon {
      color: #9ea4b4;
      font-size: 17px;
      line-height: 1;
      flex: 0 0 auto;
    }

    .icon-button {
      border: 0;
      background: transparent;
      color: #9ea4b4;
      font-size: 16px;
      cursor: pointer;
      padding: 8px;
    }

    .row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      margin: 6px 0 12px;
      font-size: 18px;
      color: #d8dce8;
      flex-wrap: wrap;
    }

    .remember { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
    .remember input { width: 16px; height: 16px; accent-color: var(--pink-strong); }

    .row a { color: #f279a0; text-decoration: none; }

    .btn-submit {
      width: 100%;
      min-height: 54px;
      border: 0;
      border-radius: 14px;
      color: #fff;
      font-size: 29px;
      font-weight: 700;
      cursor: pointer;
      background: linear-gradient(90deg, #dc4f78 0%, #ef6b92 45%, #d55179 100%);
      box-shadow: 0 16px 34px rgba(214, 73, 119, 0.35);
    }

    .divider {
      margin: 22px 0;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #9fa5b5;
      font-size: 28px;
    }

    .divider::before,
    .divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: rgba(255, 255, 255, 0.18);
    }

    .btn-google {
      width: 100%;
      min-height: 76px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      background: linear-gradient(120deg, rgba(24, 27, 44, 0.7), rgba(11, 12, 21, 0.82));
      color: #f2f4fa;
      font-size: 39px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .google-g {
      width: 39px;
      height: 39px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      font-weight: 700;
      background: conic-gradient(#ea4335 0 25%, #fbbc05 25% 50%, #34a853 50% 75%, #4285f4 75% 100%);
      color: #fff;
      font-size: 24px;
    }

    .help-text {
      margin: 12px 0 0;
      text-align: center;
      font-size: 16px;
      color: #b7bdcc;
    }

    .help-text a { color: #f279a0; text-decoration: none; }

    @media (max-width: 1200px) {
      .login-card { grid-template-columns: 1fr; min-height: auto; }
      .panel-left { min-height: 520px; }
      .panel-right { padding-top: 18px; }
      .subtitle, .field label, .input-wrap input, .row, .btn-submit, .btn-google, .help-text, .trust-item span, .hero-copy p { font-size: clamp(18px, 2.5vw, 30px); }
      .form-wrap h2 { font-size: clamp(36px, 5vw, 56px); }
    }

    @media (max-width: 760px) {
      .login-shell { padding: 10px; }
      .panel-left, .panel-right { padding: 22px; }
      .form-wrap { padding: 18px; }
      .trust-row {
        visibility: hidden;
        height: 150px;
        margin-top: 0;
      }
      .hero-copy h1 { font-size: clamp(32px, 10vw, 46px); }
      .btn-submit, .btn-google { min-height: 62px; }
      .input-wrap { min-height: 60px; }
    }
