/* ========================================================================
   Login Page - Archive & Ink Redesign
   High-end editorial aesthetic for the authentication experience.
   ======================================================================== */

.auth--login {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: transparent;
  padding: clamp(28px, 4vw, 48px) 0 clamp(44px, 6vw, 72px);
}

/* Form container */
.auth--login .tf-card--form {
  position: relative;
  z-index: 1;
  width: min(420px, 90vw);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 36px) clamp(22px, 4vw, 34px);
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: center;
  box-shadow: none;
}

.auth--login .glass-panel {
  background: transparent;
  box-shadow: none;
}

.auth--login .tf-card--form h1 {
  color: var(--tf-text);
  font-family: "Newsreader", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.06;
  margin-bottom: 0.25em;
}

.auth--login .tf-card--form .tf-text-muted {
  color: var(--tf-text-soft);
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.45;
  margin-bottom: 1.35rem;
}

/* Form */
.auth--login .tf-form--auth {
  display: grid;
  gap: 0.95rem;
  text-align: left;
}

.auth--login .tf-form--auth label {
  display: grid;
  gap: 6px;
}

.auth--login .tf-form--auth label > span {
  color: var(--tf-text-soft);
  font: 700 0.68rem/1.2 "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Inputs */
.auth--login .tf-form--auth input[type="text"],
.auth--login .tf-form--auth input[type="password"],
.auth--login .tf-form--auth input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  min-height: 44px;
  border-radius: var(--tf-r-sm);
  border: 1px solid var(--tf-border);
  color: var(--tf-text);
  background: rgba(255, 255, 255, 0.36);
  transition: all var(--tf-t) var(--tf-ease);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
}

.auth--login .tf-form--auth input:focus {
  outline: none;
  border-color: var(--tf-accent);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--tf-shadow-sm);
}

/* Actions */
.auth--login .tf-form__actions {
  margin-top: 0.25rem;
}

.auth--login .tf-form__actions .tf-btn.tf-btn--primary {
  width: 100%;
  min-height: 46px;
  background: var(--tf-accent);
  color: #fbfaee !important;
  border-radius: var(--tf-r-sm);
  border: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--tf-t) var(--tf-ease);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth--login .tf-form__actions .tf-btn.tf-btn--primary:hover {
  background: var(--tf-accent-dark);
  transform: translateY(-1px);
}

/* Links */
.auth--login .tf-form__forgot {
  margin-top: -0.15rem;
  text-align: right;
  font-size: 0.8rem;
}

.auth--login .tf-link {
  color: var(--tf-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--tf-t);
}

.auth--login .tf-link:hover {
  color: var(--tf-accent-dark);
}

.auth--login .tf-auth__hint {
  text-align: center;
  margin-top: 1rem;
  color: var(--tf-text-soft);
  font-size: 0.86rem;
}

/* Premium Pill Integration */
.auth--login .premium-pill {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 4px 9px;
  font-size: 0.65rem;
}

/* Responsive */
@media (max-width: 640px) {
  .auth--login {
    padding: 24px 18px 44px;
  }

  .auth--login .tf-card--form {
    padding: 22px 0;
    width: 100%;
  }
}
