/* Fontes */
.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}


/* Fundo 3D da página de login */
#cena3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cabecalho-simples,
.container-login,
.rodape-simples {
  position: relative;
  z-index: 1;
}

.coluna-vazia {
  flex: 1;
  max-width: 16.666%;
}

.coluna-formulario {
  position: relative;
  z-index: 2;
}

/* Novo CSS para página de login com layout responsivo em duas colunas */
body {
  margin: 0;
  background: #f6f8fa;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.site-content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: 5vw;
  background-image: url(../img/lateral.svg);
  background-size: 5vw auto;
  background-repeat: repeat-y;
  background-position-x: 100%;
  min-height: 100vh;
}

.cabecalho-simples {
  width: 100%;
  min-height: 60px;
  background: #1448B2;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  box-sizing: border-box;
}

.container-login {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  margin: 3rem auto 2rem auto;
  padding: 2rem;
  box-sizing: border-box;
  overflow-x: auto;
  align-items: center;
  align-content: flex-start;
}

.hero {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.hero .logo {
  min-height: 100px;
  max-height: 150px;
  height: auto;
}

.coluna-texto {
  flex: 3;
  max-width: 50%;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coluna-texto h1 {
  color: #e74928;
  text-shadow: 0.3px 0.3px 0 #681A09, 0.3px 0 0 #4C1104, -0.3px 0.3px 0 #601808, -0.3px -0.3px 0 #601808, -0.3px 0.7px 0 #601808, -0.3px 1.5px 0 #601808;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 20px;
}

.coluna-texto h3 {
  font-size: 1.6rem;
  line-height: 1;
  color: #863428;
  margin: 0 0 40px 0;
}

.coluna-texto p {
  color: #333;
  font-weight: 500;
  text-shadow: 0 0 8px #f7f4e8, 0 0 8px #f7f4e8, 0 0 8px #f7f4e8, 0 0 8px #f7f4e8, 0 0 8px #f7f4e8, 0 0 8px #f7f4e8, 0 0 8px #f7f4e8, 0 0 8px #f7f4e8, 0 0 8px #f7f4e8, 0 0 8px #f7f4e8;
}

.coluna-texto .texto-pequeno {
  font-size: 0.8rem;
  color: #555;
  margin-top: -10px;
  margin-bottom: 1.5rem;
}

.coluna-texto a {
  color: #1448B2;
}

.coluna-formulario {
  flex: 2;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #011c40cd;
  padding: 2rem;
  border-radius: 30px;
}

.coluna-formulario p {
  color: #b5c9e6;
  text-align: center;
}

.coluna-formulario:after {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  top: 90%;
  left: 75%;
  pointer-events: none;
  background-image: url(../img/estrelasLaranjas.svg);
  background-repeat: no-repeat;
}

.coluna-formulario a {
  color: #fff;
  /* text-decoration: none; */
}

.cadastrar {
  margin-top: 2rem;
  margin-bottom: 0;
}

a.small {
  font-size: 75%;
}

.full-post {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  position: relative;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 1rem;
}

.icon-user,
.icon-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #1448B2;
}

.toggle-password {
  cursor: pointer;
}

.login-button {
  background: #1448B2;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.login-button:hover {
  background: #d32f2f;
}

.error-container {
  color: #d32f2f;
  font-size: 0.95em;
  margin-bottom: 0.5rem;
}

.info-message a {
  color: #d32f2f;
  text-decoration: none;
}

.coluna-texto ::selection,
.coluna-formulario ::selection,
body ::selection {
  background: #ffe3db;
  color: #d32f2f;
}

.rodape-simples {
  width: 100%;
  min-height: 40px;
  padding: 0 2rem;
  background: #011C40;
  color: #b5c9e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95em;
  margin-top: 2rem;
  box-sizing: border-box;
}

.form-cadastro {
  text-align: center;
}

.cadastrar {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.4rem;
  padding: 10px 20px;
  background-color: #e74928;
  border-radius: 30px;
  margin-top: 0;
  margin-bottom: 30px;
  box-shadow: 0 5px 0 #b33c21;
  transition: margin 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.cadastrar:hover {
  background-color: #ff882c;
  margin-top: 5px;
  margin-bottom: 25px;
  box-shadow: 0 1px 0 #b33c21;
}

@media (max-width: 950px) {
  .container-login {
    max-width: 100vw;
    padding: 1rem;
    gap: 1.5rem;
  }

  .coluna-vazia,
  .no-telefone {
    display: none;
  }
}

@media (max-width: 700px) {
  body {
    padding-right: 0;
    background-image: none;
  }

  .hero {
    margin: 0;
  }

  .site-content {
    padding-right: 0;
  }

  .container-login {
    flex-direction: column;
    align-content: center;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 100vw;
  }

  .coluna-texto {
    order: 2;
    padding-right: 0;
    text-align: center;
    max-width: 80%;
  }

  .coluna-formulario {
    order: 1;
    max-width: 100%;
    min-width: 0;
  }
}

@media (min-width: 1200px) {
  .no-telefone {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(50% - 420px);
    height: 100%;
    max-height: 570px;
    background-image: url(../img/noTelefone.webp);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right bottom;
  }
}