body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom right, #e6f0fa, #ffffff);
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  color: #333;
}

#loginForm {
  background: white;
  padding: 2.5em;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.4em;
  animation: fadeIn 0.5s ease;
  text-align: center;
}

#loginForm h2 {
  margin: 0;
  font-size: 1.8em;
  font-weight: 600;
}

.subtitle {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 1em;
}

#loginForm input {
  padding: 0.75em 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  transition: border 0.3s;
  width: 100%;
}

#loginForm input:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
}

.password-wrapper {
  position: relative;
}

.password-wrapper i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

.forgot-password {
  font-size: 0.85em;
  color: #4a90e2;
  text-decoration: none;
  margin-top: -0.5em;
}

.forgot-password:hover {
  text-decoration: underline;
}

#loginForm button {
  padding: 0.75em;
  background-color: #4a90e2;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

#loginForm button:hover {
  background-color: #3b7dc4;
}

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