/* account.css */
.auth-page {
  min-height: calc(100vh - var(--content-top));
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-xl);
}
.auth-card {
  width: 100%; max-width: 480px;
  padding: var(--space-2xl);
}
.auth-logo {
  text-align: center; margin-bottom: var(--space-xl);
}
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
}
.auth-subtitle {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--grey); margin-top: .25rem;
}
.auth-title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  margin-bottom: .4rem;
}
.auth-row {
  display: flex; align-items: center; justify-content: space-between;
}
.auth-divider {
  display: flex; align-items: center; gap: var(--space-md);
  margin: var(--space-lg) 0; color: var(--grey); font-size: .8rem;
}
.auth-divider::before,
.auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--dark4);
}

/* Password field */
.password-wrap {
  position: relative;
}
.password-wrap .form-input {
  padding-right: 2.5rem;
}
.password-toggle {
  position: absolute; right: .6rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 1rem;
  color: var(--grey); padding: .2rem;
}
.password-toggle:hover { color: var(--white); }

/* Password strength bar */
.password-strength { }
.pwd-bar {
  height: 4px; background: var(--dark3); border-radius: 2px;
  overflow: hidden; margin-bottom: .3rem;
}
.pwd-bar div {
  height: 100%; border-radius: 2px; width: 0;
  transition: width .3s, background .3s;
}
