.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  box-sizing: border-box;
  background-color: var(--bg-soft);
}
.auth-page .theme-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--text);
}

.auth-logo {
  margin-bottom: 22px;
}
.auth-logo a {
  text-decoration: none;
}
.auth-logo .app-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.auth-logo .app-logo svg {
  color: var(--accent);
  flex-shrink: 0;
}
.auth-logo .app-logo .app-logo-name {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.auth-logo .app-logo .app-logo-name em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.auth-card {
  background-color: var(--surface-raised);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  border: solid 1px var(--border);
  padding: 28px;
  box-sizing: border-box;
  width: 100%;
  max-width: 420px;
  color: var(--text);
}

.auth-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 6px;
}

.auth-intro {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 18px 0;
}

.auth-field {
  margin-bottom: 16px;
}

.auth-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 6px;
}

.auth-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--surface-raised);
  border: solid 1px var(--border-strong);
  border-radius: 10px;
  transition-property: border-color, box-shadow;
  transition-duration: 0.2s;
}
.auth-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.auth-error {
  margin-top: 8px;
  font-size: 13px;
  color: var(--link);
}
.auth-error li {
  line-height: 1.5;
}

.auth-status {
  background-color: var(--accent-soft);
  border: solid 1px var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.auth-remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}
.auth-remember input {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}
.auth-actions .red-btn {
  font-size: 14px;
  padding: 11px 22px;
}

.auth-link {
  font-size: 13px;
  color: var(--link);
  text-decoration: none;
}
.auth-link:hover {
  text-decoration: underline;
}

.auth-alt {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 22px;
  padding-top: 16px;
  border-top: solid 1px var(--border);
}
.auth-alt a {
  color: var(--link);
  font-weight: 600;
  text-decoration: none;
}
.auth-alt a:hover {
  text-decoration: underline;
}

.auth-back {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}
.auth-back:hover {
  color: var(--link);
  text-decoration: underline;
}

/*# sourceMappingURL=auth.css.map */
