@import url('https://fonts.googleapis.com/css2?family=Gill+Sans:wght@400;600&display=swap');

body {
  font-family: "Gill Sans Nova", "Gill Sans", system-ui, sans-serif;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  color: #fff;
}

.login-container {
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  width: 360px;
  padding: 40px;
  text-align: center;
}

.login-header img {
  height: 60px;
  margin-bottom: 10px;
}

.login-header h2 {
  margin: 0;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
}

.login-form {
  margin-top: 20px;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  transition: border 0.3s, background 0.3s;
}

.login-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: #00C2FF;
}

.remember {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.9rem;
  margin: 10px 0;
  opacity: 0.8;
}

button {
  width: 100%;
  background: linear-gradient(135deg, #000, #343434);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: #00C2FF;
  color: #000;
}

.error {
  background: rgba(255, 0, 0, 0.2);
  color: #ff7a7a;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.forgot {
  margin-top: 16px;
  font-size: 0.85rem;
  opacity: 0.7;
}
.forgot a {
  color: #00C2FF;
  text-decoration: none;
}
.forgot a:hover {
  text-decoration: underline;
}

.back-login {
  display: inline-block;
  margin-top: 20px;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.back-login:hover {
  background: #343434;
}
