#login {
  background: linear-gradient(135deg, #23a6d5, #23d5ab);
  display: flex;
  align-items: center;
  justify-content: center;
}

#login::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

#login form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 90%;
  max-width: 400px;
}

#login img {
  width: 6em;
  height: 6em;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

#login h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: -webkit-linear-gradient(45deg, #23a6d5, #23d5ab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#login input:not([type="submit"]) {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  color: #000000 !important;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

#login input:not([type="submit"]):focus {
  border-color: #23a6d5;
  outline: none;
  box-shadow: 0 0 0 3px rgba(35, 166, 213, 0.15);
}

#login input[type="submit"] {
  width: 100%;
  padding: 1rem;
  margin-top: 1.5rem;
  background: linear-gradient(45deg, #23a6d5, #23d5ab);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(35, 213, 171, 0.2);
}

#login input[type="submit"]:hover {
  opacity: 0.95;
  box-shadow: 0 6px 8px rgba(35, 213, 171, 0.3);
}

#login .wrong {
  background: #fff5f5;
  color: #c53030;
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid #fc8181;
}