* {
  font-family: "Poppins", sans-serif;
}
body {
  margin: 0;
  padding: 0;

  background: linear-gradient(135deg, #0b4f8a 0%, #1976d2 50%, #42a5f5 100%);

  min-height: 100vh;

  overflow: hidden;
}

/* Background Circle */

.bg-circle {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  z-index: 1;
}

.circle1 {
  width: 350px;
  height: 350px;

  background: #ffffff;

  left: -100px;
  top: -100px;
}

.circle2 {
  width: 450px;
  height: 450px;

  background: #00e5ff;

  right: -150px;
  bottom: -150px;
}

.circle3 {
  width: 250px;
  height: 250px;

  background: #81c784;

  left: 35%;
  top: 15%;
}

/* Container */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Card */

.login-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: 0.3s;
}

.login-card:hover {
  transform: translateY(-5px);
}

/* Header */
.login-header {
  text-align: center;
  padding: 15px 25px;
}
.login-logo {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.login-header h2 {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}
.login-header p {
  margin-bottom: 6px;
  color: #64748b;
}
.version {
  margin-top: 8px;
  color: #64748b;
  font-size: 12px;
}

/* Forgot Password */

.forgot {
  color: #1976d2;

  font-size: 14px;

  text-decoration: none;
}

.forgot:hover {
  text-decoration: none;
}

/* Footer */

.login-footer {
  text-align: center;
  margin-top: 30px;
  color: #94a3b8;
  font-size: 13px;
}
