/* login.css — complementos da tela de login (reusa o signup.css). */

/* "Esqueci minha senha" — botão em estilo de link, alinhado à direita */
.su-link {
  align-self: flex-end;
  margin-top: 0.15rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: #2d6ba0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.su-link:hover { color: #1a4e7a; text-decoration: underline; }

/* Nota informativa (mock do esqueci-senha) */
.su-note {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #1e6ba0;
  background: rgba(106, 212, 255, 0.12);
  border: 1px solid rgba(30, 107, 160, 0.3);
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
}
.su-note[hidden] { display: none; }

/* Seção "Ainda não tem conta?" — separada por uma linha sutil */
.su-alt {
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(60, 80, 120, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}
.su-alt-text {
  font-size: 0.85rem;
  color: rgba(40, 50, 75, 0.7);
}
.su-alt .su-btn.ghost {
  width: 100%;
  margin-top: 0;
}
