
    body {
      margin: 0;
      padding: 0;
      font-family: 'Quicksand', sans-serif;
      background: linear-gradient(to bottom right, #2c003e, #1b1b2f);
      overflow: hidden;
    }

    .background-glow {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
    }

    .glow-circle {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 0, 200, 0.3), transparent 60%);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite alternate;
    }

    .glow-circle:nth-child(2) {
      top: 30%;
      left: 60%;
      animation-delay: 2s;
    }

    @keyframes float {
      0% { transform: translateY(0px); }
      100% { transform: translateY(-40px); }
    }

    .login-container {
      position: relative;
      z-index: 1;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .login-card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 30px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: #fff;
  overflow: hidden;
  transition: 0.3s ease;
}

.login-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.3;
  border-radius: 22px;
}

.login-card::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(to bottom, #ff6ec4, #7873f5);
  border-radius: 5px 0 0 5px;
  animation: flicker 3s infinite ease-in-out;
}

@keyframes flicker {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.4; }
}


    .login-card h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 24px;
      margin-bottom: 30px;
      color: #ff9ff3;
      margin-top: 0;
    }

    .form-group {
      margin-bottom: 20px;
      text-align: left;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-size: 14px;
      color: #eee;
    }

    .form-group input {
      width: 93.5%;
      padding: 12px;
      border-radius: 8px;
      border: none;
      outline: none;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      font-size: 16px;
    }

    .form-group input::placeholder {
      color: #ccc;
    }

    .login-btn {
      width: 100%;
      padding: 12px;
      background: linear-gradient(to right, #ff6ec4, #7873f5);
      border: none;
      color: white;
      font-size: 16px;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .login-btn:hover {
      transform: scale(1.05);
    }

    .footer {
      margin-top: 20px;
      font-size: 12px;
      color: #aaa;
    }

    @media (max-width: 500px) {
      .login-card {
        padding: 30px 20px;
      }
    }

    .splash-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1f1c2c, #928dab); /* Dark and smooth */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 999;
        animation: fadeOut 5s ease forwards;
    }

    .splash-title {
        font-size: 3rem;
        font-family: 'Pacifico', cursive;
        background: linear-gradient(90deg, #f093fb, #f5576c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
        animation: fadeInZoom 2s ease-in-out, pulse 3s infinite;
        letter-spacing: 2px;
        text-align: center;
    }

    @keyframes fadeInZoom {
        0% {
            transform: scale(0.5);
            opacity: 0;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
    }

    @keyframes fadeOut {
    0%, 80% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
    }