/* PDR_10312_VITRINE_ACESSOS_APP — telas de login/ativação/reset (item 7)
   Paleta e tipografia seguem PDR_DESIGN_SYSTEM.md: Nunito (títulos),
   Open Sans (corpo), ciano #00D6C9, verde de compra #1FA97A (Porta 5),
   fundo de painel #EEF3F8. Nunca cursiva. Público-alvo: cliente final
   45+, pouca familiaridade com tecnologia — campos grandes, poucos
   passos, linguagem direta. */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(135deg, #EEF3F8 0%, #FFFFFF 60%);
  color: #000000;
  min-height: 100vh;
}

.tela-auth {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card-auth {
  background: #FFFFFF;
  border: 1px solid #E4E7EB;
  border-radius: 12px;
  box-shadow: 5px 6px 10px rgba(0, 0, 0, 0.14);
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
}

.marca-parceiro {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #00A9A5;
  margin: 0 0 8px 0;
}

.titulo-auth {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 26px;
  margin: 0 0 8px 0;
  color: #000000;
}

.subtitulo-auth {
  font-size: 15px;
  color: #4A4A4A;
  margin: 0 0 28px 0;
  line-height: 1.5;
}

.form-auth {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.campo-auth label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: #000000;
}

.campo-auth input {
  width: 100%;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  padding: 14px 16px;
  border: 1.5px solid #E4E7EB;
  border-radius: 8px;
  background: #FFFFFF;
  color: #000000;
  transition: border-color 0.15s, background-color 0.15s;
}

.campo-auth input:focus {
  outline: none;
  border-color: #00D6C9;
  background: #EAFBFA;
}

.campo-somente-leitura {
  width: 100%;
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid #E4E7EB;
  border-radius: 8px;
  background: #EEF3F8;
  color: #000000;
}

.wrapper-senha {
  position: relative;
}

.wrapper-senha input {
  padding-right: 48px;
}

.botao-olho {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 6px 8px;
  line-height: 1;
}

.botao-primario-auth {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #1FA97A;
  border: none;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: filter 0.15s;
}

.botao-primario-auth:hover {
  filter: brightness(0.95);
}

.link-auth {
  display: block;
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  color: #00A9A5;
  text-decoration: none;
  font-weight: 600;
}

.link-auth:hover {
  text-decoration: underline;
}

.alerta-auth {
  background: #FDECEC;
  color: #D64545;
  border: 1px solid #F4BFBF;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.alerta-auth.alerta-info {
  background: #EAFBF3;
  color: #1FA97A;
  border-color: #A6E9CC;
}

.lista-contas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opcao-conta {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  padding: 16px 18px;
  border: 1.5px solid #E4E7EB;
  border-radius: 8px;
  background: #FFFFFF;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}

.opcao-conta:hover {
  border-color: #00D6C9;
  background: #EAFBFA;
}

.rodape-auth {
  margin-top: 28px;
  font-size: 12px;
  color: #A0A0A0;
  text-align: center;
}
