/* ═══════════════════════════════════════════════
   Login Page
   ═══════════════════════════════════════════════ */

.login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 60%),
    var(--bg);
}

.login-container {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-container .logo-img {
  margin-bottom: 40px;
}

.login-title {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.login-subtitle {
  color: var(--text-dim);
  font-size: 0.9375rem;
  margin-bottom: 32px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form .form-group {
  text-align: left;
}

.password-wrapper {
  position: relative;
}
.password-wrapper input {
  padding-right: 44px;
}
.toggle-pw {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}
.toggle-pw:hover {
  color: var(--text);
}

.btn-label,
.btn-loader {
  display: inline-flex;
  align-items: center;
}

/* Gold subtle line at bottom */
.login-container::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 40px auto 0;
  border-radius: 2px;
  opacity: 0.5;
}
