    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      font-family: "Inter", sans-serif;
      background:
        radial-gradient(circle at top left, #7f5af0 0%, transparent 35%),
        radial-gradient(circle at bottom right, #2cb67d 0%, transparent 35%),
        linear-gradient(135deg, #0f172a, #111827 45%, #020617);
      position: relative;
    }

    /* Animated background blobs */
    .blob {
      position: absolute;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.35;
      animation: float 10s ease-in-out infinite;
    }

    .blob.one {
      background: #7f5af0;
      top: -120px;
      left: -120px;
    }

    .blob.two {
      background: #2cb67d;
      bottom: -120px;
      right: -120px;
      animation-delay: 3s;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px) translateX(0px);
      }
      50% {
        transform: translateY(25px) translateX(20px);
      }
    }

    .login-container {
      position: relative;
      z-index: 2;
      width: 420px;
      padding: 50px 40px;
      border-radius: 28px;
      backdrop-filter: blur(18px);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 1px rgba(255,255,255,0.08);
    }

    .login-container::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 28px;
      padding: 1px;
      background: linear-gradient(
        135deg,
        rgba(255,255,255,0.5),
        rgba(255,255,255,0.05)
      );
      -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .logo {
      width: 74px;
      height: 74px;
      margin: 0 auto 28px;
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      font-weight: 700;
      color: white;
      background: linear-gradient(135deg, #7f5af0, #2cb67d);
      box-shadow:
        0 10px 30px rgba(127, 90, 240, 0.45);
    }

    h1 {
      color: white;
      text-align: center;
      font-size: 2rem;
      margin-bottom: 10px;
      font-weight: 700;
      letter-spacing: -1px;
    }

    .subtitle {
      color: rgba(255,255,255,0.7);
      text-align: center;
      margin-bottom: 35px;
      font-size: 0.95rem;
    }

    .input-group {
      margin-bottom: 22px;
      position: relative;
    }

    .input-group label {
      display: block;
      margin-bottom: 10px;
      color: rgba(255,255,255,0.85);
      font-size: 0.92rem;
      font-weight: 500;
    }

    .input-group input {
      width: 100%;
      padding: 16px 18px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.06);
      color: white;
      font-size: 1rem;
      outline: none;
      transition: 0.3s ease;
      backdrop-filter: blur(12px);
    }

    .input-group input::placeholder {
      color: rgba(255,255,255,0.4);
    }

    .input-group input:focus {
      border-color: rgba(127, 90, 240, 0.8);
      box-shadow:
        0 0 0 4px rgba(127, 90, 240, 0.18),
        0 10px 25px rgba(0,0,0,0.25);
      transform: translateY(-2px);
    }

    .options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
      color: rgba(255,255,255,0.75);
      font-size: 0.9rem;
    }

    .options a {
      color: #8b7dff;
      text-decoration: none;
      transition: 0.2s;
    }

    .options a:hover {
      color: white;
    }

    .checkbox {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .checkbox input {
      accent-color: #7f5af0;
    }

    .login-btn {
      width: 100%;
      padding: 16px;
      border: none;
      border-radius: 18px;
      background: linear-gradient(135deg, #7f5af0, #2cb67d);
      color: white;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      box-shadow:
        0 12px 30px rgba(127, 90, 240, 0.35);
    }

    .login-btn:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow:
        0 16px 35px rgba(127, 90, 240, 0.45);
    }

    .divider {
      margin: 30px 0 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      color: rgba(255,255,255,0.4);
      font-size: 0.85rem;
    }

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

    .socials {
      display: flex;
      gap: 14px;
    }

    .social-btn {
      flex: 1;
      padding: 14px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.05);
      color: white;
      cursor: pointer;
      transition: 0.3s ease;
      font-weight: 500;
    }

    .social-btn:hover {
      background: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }

    .signup {
      margin-top: 28px;
      text-align: center;
      color: rgba(255,255,255,0.65);
      font-size: 0.92rem;
    }

    .signup a {
      color: white;
      font-weight: 600;
      text-decoration: none;
    }

    @media (max-width: 480px) {
      .login-container {
        width: 92%;
        padding: 38px 24px;
      }
    }
