:root {
  --base-menta: #c2e0b1;
  --floresta-profunda: #254d1a;
  --lima-neon: #20c214;
  --neve: #ffffff;
  --neve2: #ffffffbb;
  --vidro-fosco: rgba(255, 255, 255, 0.25);
  --musgo-suave: #76a361;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.view-autenticacao {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
}

#content-wrapper {
  min-height: 100vh;
  width: 100%;
  transition: filter 0.3s ease;
}

.header-navegacao-login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logotipo-superior {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logotipo-superior .emblema-marca {
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.1);
  padding: 6px;
  border-radius: 10px;
}

.logotipo-superior .nome-marca-estilizado {
  color: var(--floresta-profunda);
  font-weight: 900;
  font-style: italic;
  font-size: 1.5rem;
}

.btn-exit-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vidro-fosco);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  color: var(--floresta-profunda);
  font-weight: 900;
  font-style: italic;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  font-size: 0.9rem;
}

.btn-exit-login:hover {
  background: var(--floresta-profunda);
  color: var(--neve);
}

/*DIVISAO*/
.wrapper-split {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--musgo-suave);
}

.ala-lateral-esquerda {
  display: none !important;
}

@media (min-width: 1024px) {
  .ala-lateral-esquerda {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
  }
}

.ala-principal-direita {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  position: relative;
  background-color: transparent;
}

@media (min-width: 1024px) {
  .ala-principal-direita {
    width: 100%;
  }
}

.link-logotipo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.emblema-marca {
  font-size: 1.8rem;
  background: rgba(0, 0, 0, 0.15);
  padding: 8px;
  border-radius: 12px;
}
.nome-marca-estilizado {
  color: var(--floresta-profunda);
  font-weight: 900;
  font-style: italic;
  font-size: 1.7rem;
}
.zona-personagem {
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-personagem {
  width: 100%;
  max-width: 350px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

/*FORMULÁRIO  */
.modulo-login {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 2.5rem 3rem;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cabecalho-form {
  font-size: 2.1rem;
  font-weight: 900;
  font-style: italic;
  color: var(--floresta-profunda);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}


.stepper-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 8px;
}
.step-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: 0.3s;
}
.step-dot.active {
  background: white;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.step-line {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.agrupamento-input {
  margin-bottom: 1.5rem;
}

.etiqueta-input {
  display: block;
  color: var(--neve2);
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.caixa-texto-protege {
  width: 100%;
  background-color: var(--vidro-fosco);
  border: 2px solid transparent;
  border-radius: 1.2rem;
  padding: 1.1rem 1.4rem;
  color: var(--neve);
  outline: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.caixa-texto-protege::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.caixa-texto-protege:focus {
  background-color: rgba(255, 255, 255, 0.35);
  border-color: var(--neve);
  transform: translateY(-2px);
}

/* BOTÕES DE PASSO */
.botao-acao-principal {
  width: 100%;
  background-color: var(--floresta-profunda);
  color: var(--neve);
  padding: 1.2rem;
  border: none;
  border-radius: 1.2rem;
  font-weight: 900;
  font-style: italic;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition:
    background 0.2s,
    transform 0.1s;
}
.botao-acao-principal:hover {
  background-color: #1a3a11;
  transform: translateY(-2px);
}

.btn-flex {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  width: 100%;
}

.btn-voltar-step {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  border-radius: 1.2rem;
  font-weight: 700;
  font-style: italic;
  cursor: pointer;
  transition: 0.3s;
}
.btn-voltar-step:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hidden {
  display: none !important;
}

@media (max-width: 480px) {
  .header-navegacao-login {
    padding: 1.5rem;
  }
  .logotipo-superior .nome-marca-estilizado {
    display: none;
  }
  .cabecalho-form {
    font-size: 1.8rem;
  }
}

/*CHECKLIST DA PASSWORD*/
.password-req-list {
  list-style: none;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.agrupamento-input:focus-within .password-req-list {
  max-height: 250px;
  opacity: 1;
  margin-top: 10px;
  padding: 15px 20px;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  font-weight: 700;
  
}

.req-item:last-child {
  margin-bottom: 0;
}

.req-item.valid {
  color: var(--lima-neon);
}

.req-icon {
  font-size: 1rem;
}