/* ==========================================================
   Ulia.Radio — Pages de compte (inscription, connexion, mots de passe)
   ========================================================== */

.acct-page {
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 8vw, 100px) var(--u-gutter) 80px;
}

.acct-card {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-radius: 20px;
  padding: 38px 34px;
  box-shadow: 0 24px 60px rgba(16, 39, 107, 0.1);
}

.acct-card h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--u-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.acct-lead {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--u-ink);
  opacity: 0.62;
  line-height: 1.55;
  margin: 0 0 26px;
}

.acct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.acct-field span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--u-ink);
  opacity: 0.7;
}

.acct-field input {
  font: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1px solid var(--u-line);
  border-radius: 11px;
  background: #fff;
  color: var(--u-ink);
  font-family: var(--font-body);
}

.acct-field input:focus {
  outline: none;
  border-color: var(--u-blue);
  box-shadow: 0 0 0 3px rgba(7, 91, 230, 0.12);
}

.acct-hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--u-ink);
  opacity: 0.5;
  margin-top: 4px;
}

.acct-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--u-blue);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.acct-submit:hover {
  background: var(--u-blue-deep);
  transform: translateY(-1px);
}

.acct-alert {
  padding: 12px 14px;
  border-radius: 11px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.acct-alert--error {
  background: #fdecec;
  color: #8a1a12;
}

.acct-alert--success {
  background: #e9f9ef;
  color: #18794e;
}

.acct-aside {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--u-line);
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--u-ink);
  opacity: 0.65;
}

.acct-aside a {
  color: var(--u-blue);
  font-weight: 700;
  text-decoration: none;
  opacity: 1;
}

.acct-aside a:hover {
  text-decoration: underline;
}
