 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(ellipse at top, #0b1022, #0a0e25);
  position: relative;
  overflow: hidden;
}


.background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
} 

/* Center box */
.login-container {
  position: relative;
  z-index: 2;
  background: rgba(20, 25, 50, 0.9);
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.2);
  width: 416px;
  text-align: center;
  color: #fff;
}

/* Logo text */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.logo-img{
  height: 30px;
}

.logo-img {
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.25));
}

.login {
  animation: fadeIn 0.7s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form text */
h2 {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
}

.subtitle {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 20px;
}

/* Inputs */
form {
  text-align: left;
}

label {
  font-size: 13px;
  color: #d9d9d9; 
  display: block;
  margin-bottom: 6px;
}

input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
  outline: none;
  transition: border-color 0.2s;
}


input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

input:focus {
  border-color: #00eaff;
  box-shadow: 0 0 5px rgba(0, 234, 255, 0.4);
}

.input-div{
  margin-bottom: 15px;
}

/* Password eye toggle */
.password-field {
  position: relative;
}

.password-field .toggle {
  position: absolute;
  right: 12px;
  top: 9px;
  cursor: pointer;
  color: #aaa;
  transition: color 0.3s;

  padding: 4px 6px;
}

.password-field .toggle:hover {
  color: #00eaff;
}

.toggle {
  position: absolute;
  right: 10px;
  top: 9px;
  cursor: pointer;
}

/* Forgot link */
.forgot-password-link {
  display: inline-block;
  color: #00eaff;
  font-size: 13px;
  text-decoration: none;
  margin-top: -13px;
}
.forgot-password-link:hover {
  text-decoration: underline;
}

/* Button with neon glow */
button {
  width: 100%;
  background: #00eaff;
  color: #000;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 8px rgba(0, 234, 255, 0.35);
}

button:hover {
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.65);
  transform: translateY(-1px);
}

/* Footer */
/* Footer fixed at bottom */
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #999;
  font-size: 13px;
  padding: 10px 0;
  background: transparent; 
}

