
    /* Base styles */
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: linear-gradient(to bottom right, #0f172a, #6b21a8, #0f172a);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      color: #fff;
    }

    .container {
      max-width: 400px;
      width: 100%;
    }

    /* Logo Section */
    .logo-section {
      text-align: center;
      margin-bottom: 2rem;
    }

    .logo-section img {
      height: 80px;
      width: auto;
      margin-bottom: 1rem;
    }

    .logo-section h1 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: rgba(255,255,255,0.9);
    }

    .logo-section p {
      color: rgba(216, 180, 254, 0.8);
    }

    /* Card */
    .card {
      background: rgba(0,0,0,0.2);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(168, 85, 247, 0.2);
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.5);
      padding: 20px;
    }

    .card h2 {
      margin-top: 0;
      margin-bottom: 0.25rem;
    }

    .card h2,
    .card p {
      color: #fff;
    }

    .card p {
      font-size: 0.9rem;
      color: rgba(233, 213, 255, 0.7);
    }

    .form-group {
      margin-bottom: 1rem;
    }

    label {
      display: block;
      margin-bottom: 0.25rem;
      color: #ddd6fe;
    }

    input[type="text"],
    input[type="password"] {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid rgba(168,85,247,0.3);
      background: rgba(255,255,255,0.05);
      color: #fff;
      outline: none;
    }

    input::placeholder {
      color: rgba(233, 213, 255, 0.5);
    }

    .form-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: rgba(233,213,255,0.8);
      margin-top: 0.5rem;
    }

    .form-footer a {
      color: #fb923c;
      text-decoration: none;
    }

    .form-footer a:hover {
      color: #fdba74;
    }

    .btn {
      display: block;
      width: 100%;
      padding: 10px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(to right, #f97316, #ea580c);
      color: white;
      box-shadow: 0 4px 10px rgba(249,115,22,0.3);
    }

    .btn-primary:hover {
      background: linear-gradient(to right, #ea580c, #c2410c);
    }

    .signup-text {
      text-align: center;
      margin-top: 1rem;
      font-size: 0.9rem;
      color: rgba(233,213,255,0.7);
    }

    .signup-text a {
      color: #fb923c;
      text-decoration: none;
    }

    .signup-text a:hover {
      color: #fdba74;
    }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      margin: 1.5rem 0;
    }

    .divider::before,
    .divider::after {
      content: "";
      flex: 1;
      border-top: 1px solid rgba(168,85,247,0.2);
    }

    .divider span {
      margin: 0 10px;
      font-size: 0.75rem;
      color: rgba(216,180,254,0.8);
    }

    /* Social buttons */
    .social-buttons {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .btn-outline {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(168,85,247,0.3);
      color: #fff;
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(168,85,247,0.5);
    }

    .btn svg {
      height: 16px;
      width: 16px;
      margin-right: 6px;
      vertical-align: middle;
    }
    .btn span {
      vertical-align: middle;
    }