/* ==== GLOBAL ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

    body {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(135deg, #667eea, #764ba2);
      font-family: "Poppins", sans-serif;
    }

    .login-box {
      width: 400px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(15px);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      color: #fff;
    }

    .login-logo a {
      font-size: 28px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
    }

    .form-control {
      border-radius: 12px;
      border: none;
      padding: 12px 15px;
      font-size: 15px;
    }

    .form-control:focus {
      box-shadow: 0 0 0 2px #667eea;
    }

    .btn-primary {
      border-radius: 12px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      border: none;
      font-weight: 500;
      transition: 0.3s;
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #5a67d8, #6b46c1);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .login-msg {
      font-size: 14px;
      margin-bottom: 20px;
      opacity: 0.9;
    }

    .alert {
      border-radius: 12px;
      padding: 10px 15px;
      font-size: 14px;
    }

    .captcha-box {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .captcha-box img {
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.2);
      height: 40px;
    }

    .captcha-box button {
      background: transparent;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #ffd369;
    }

    a {
      color: #ffd369;
      text-decoration: none;
      transition: 0.3s;
    }

    a:hover {
      text-decoration: underline;
    }