body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--hm-secondary);
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--hm-secondary);
  margin: 0;
  padding: 0;
  overflow: auto;
  margin: 20px;
  z-index: 1;
  min-height: calc(100vh - 175px);;
}
.input-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  padding: 30px 35px;
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}
.input-card h2 {
  font-family: var(--font-heading);
  color: var(--hm-primary-dark);
  margin-bottom: 30px;
  font-size: 26px;
}

.password-wrapper {
  position: relative;
  width: 100%;
}
.password-wrapper input {
  width: 100%;
  padding-right: 40px; /* space for eye icon */
}
.password-wrapper i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #666;
}

.login-footer {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #555;
}
.login-footer a {
  color: var(--hm-primary);
  text-decoration: none;
  font-weight: 600;
}
.login-footer a:hover {
  text-decoration: underline;
}