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

    body {
      background-color: #000;
      font-family: 'Inter', sans-serif;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    /* New background styles */
    body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 50%, rgba(70, 10, 30, 0.5) 0%, transparent 40%),
                  radial-gradient(circle at 80% 70%, rgba(10, 30, 70, 0.5) 0%, transparent 40%),
                  linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
      z-index: -1;
    }

    body::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
      z-index: -1;
    }

    /* Subtle grid overlay */
    .grid-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      z-index: -1;
    }

    .container {
      width: 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 40px;
      background-color: rgba(15, 15, 20, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .logo {
      margin-bottom: 30px;
      display: flex;
      justify-content: center;
    }

    .logo img {
      width: 140px;
      height: auto;
      object-fit: contain;
    }

    h1 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
      text-align: center;
      transition: all 0.3s ease;
      padding-top: 20px; /* Added padding at the top */
    }

    .login-link {
      color: #fff;
      font-size: 14px;
      margin-bottom: 30px;
      text-align: center;
    }

    .login-link a {
      color: #f44;
      text-decoration: none;
      font-weight: 600;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .login-link a:hover {
      color: #ff6666;
    }

    .auth-buttons {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
    }

    .btn {
      width: 100%;
      padding: 12px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .btn img {
      width: 20px;
      height: 20px;
      margin-right: 10px;
      object-fit: contain;
    }

    .btn-google {
      background-color: #4285F4;
      color: white;
    }

    .btn-google:hover {
      background-color: #3367d6;
      transform: translateY(-1px);
    }

    .btn-apple {
      background-color: #fff;
      color: #000;
    }

    .btn-apple:hover {
      background-color: #e5e5e5;
      transform: translateY(-1px);
    }

    .divider {
      display: flex;
      align-items: center;
      width: 100%;
      margin: 20px 0;
      color: #888;
      font-size: 12px;
    }

    .divider::before,
    .divider::after {
      content: "";
      flex: 1;
      border-bottom: 1px solid #333;
    }

    .divider::before {
      margin-right: 10px;
    }

    .divider::after {
      margin-left: 10px;
    }

    .terms {
      font-size: 12px;
      color: #888;
      margin-top: 30px;
      text-align: center;
      line-height: 1.5;
      max-width: 320px;
    }

    .terms a {
      color: #f97316;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .terms a:hover {
      color: #fb923c;
    }

    @media (max-width: 480px) {
      .logo img {
        width: 100px;
      }

      h1 {
        font-size: 22px;
        padding-top: 15px; /* Adjusted for mobile */
      }

      .btn {
        font-size: 13px;
        padding: 12px;
      }
      
      .container {
        padding: 30px 20px; /* Adjusted padding for better mobile appearance */
      }

      /* Simplified background for mobile */
      body::before {
        background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
      }

      body::after {
        background: none;
      }

      .grid-overlay {
        background-size: 30px 30px; /* Smaller grid for mobile */
      }
    }
  </style>