/* ==================================================================
   login.css  ·  Estilo exclusivo para a página de login
   Revisão: 07/07/2025 · Athena (logo colorido + links chumbo)
   ================================================================== */

:root {
  --rd-orange: #ff5a00;
  --rd-orange-dark: #e84f00;
  --rd-gray: #ccc;
  --rd-chumbo: #333333;          /* cor chumbo */
}

/* ---- Reset básico para centrar a caixa ---- */
body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(135deg, #ff7e2a 0%, var(--rd-orange) 100%);
  font-family: sans-serif;
}

/* ---- Container do formulário ---- */
.box {
  background: #fff;
  padding: 32px 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0 0 0 / 15%);
  width: 100%;
  max-width: 360px;
  text-align: center;
}

/* ---- Logotipo (colorido) ---- */
.box img {
  height: 125px;
  margin-bottom: 0.5rem;
}

/* ---- Título ---- */
.box h1 {
  margin: 0.25rem 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

/* ---- Campos de entrada ---- */
.box input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid var(--rd-gray);
  border-radius: 6px;
  font-size: 1rem;
}

/* ---- Botão Entrar ---- */
.box button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  background: var(--rd-orange);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

.box button:hover {
  background: var(--rd-orange-dark);
}

/* ---- Mensagem de erro ---- */
.erro {
  color: #d10000;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ---- Linha dos links (Esqueci / Criar) ---- */
.link-linha {
  display: flex;
  justify-content: center;
  gap: 28px;           /* espaçamento horizontal */
  margin-top: 20px;
}

/* ---- Voltar ao início ---- */
.link-voltar {
  display: block;
  text-align: center;
  margin-top: 10px;    /* distância vertical */
}

/* ---- Estilo dos links ---- */
.tiny {
  font-size: 0.9rem;
  color: var(--rd-chumbo);     /* chumbo */
  text-decoration: none;
}

.tiny:hover {
  text-decoration: underline;
  color: #000;                 /* preto no hover (opcional) */
}
