@import url("./auth.css");

.login-page .auth-field:nth-child(1) { animation-delay: 0.15s; }
.login-page .auth-field:nth-child(2) { animation-delay: 0.22s; }

.login-page .auth-submit {
  animation-delay: 0.3s, 0.3s;
}

/* Password visibility toggle */
.password-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field-wrapper input {
  flex: 1;
  padding-right: 40px;
}

.password-toggle-btn {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary, rgba(0, 0, 0, 0.5));
  transition: color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  min-width: 44px;
  min-height: 44px;
}

.password-toggle-btn:hover {
  color: var(--text, rgba(0, 0, 0, 0.8));
}

.password-toggle-btn:focus {
  outline: none;
}

.eye-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.password-toggle-btn.active .eye-icon {
  opacity: 0.6;
}

