body {
    background: url('/static/img/background.png') no-repeat center center fixed;
    background-size: cover;
      /* overflow: hidden; */
      width: 100%;

}
  .form-container {
    background-color: #913133f3;
    font-family: "Nunito", sans-serif;
    height: 100vh; /*  ocupa verticalmente a página toda  */
    width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    color:#ffffff;
}

  #form-container {
    margin: 0;
    border: none;
  }

  .d-flex {
    height: 100vh; /* take up the full height of the screen */
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically */
  }


  .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0%;
  }

  /* .container-fluid1 {
    background-color: #31913fc2;
  } */

  .info-container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
  }


  .info-container {
    color: #913132;
    text-align: center;
    font-family: "Nunito", sans-serif;
    width: 100%;
  
  }
  .info-container h1 {
    font-size: 2.5rem;
  }
   /* botao adquirir agora */
  .info-container button {
    background-color: #913133;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-family: "Nunito", sans-serif;
    outline: none;
    box-shadow: none;
  }
  .info-container button:hover {
    background-color: white;
    color: #792f2f;
    border: #792f2f 0.1vh solid;
  }
  .info-container button {
  background-color: #792f2f;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 23px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}


/* botao de login */
.form-container button:hover {
  background-color: #792f2f;
  color: white;
  border: white 0.01vh solid;
}
.form-container button {
  background-color: white;
  border: none;
  color: #792f2f;
  padding: 10px 10px;
  border-radius: 23px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  position: relative;
  bottom: 30px;
}


/* login */
h3.fw-normal.mb-3.pb-3 {
  color: #ffffff; 
  font-family: "Nunito", sans-serif;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}


/* esqueci minha senha e primeiro acesso  */
.small.mb-5.pb-lg-2.d-inline-block.text-center.w-100 {
font-size: 14px;
text-align: center;
margin-bottom: 20px;
padding-bottom: 10px;
display: inline-block;
width: 100%;
}


#esqueci-senha, #primeiro-acesso {
  color: #ffffff85 !important; /* cor do texto normal */
  text-decoration: none !important; /* remove a linha inferior do link */
  cursor: pointer;
}

#esqueci-senha:hover, #primeiro-acesso:hover {
  color: #ffffff !important; /* cor do texto quando o mouse está sobre o link */
}
/* O !important é usado para sobrescrever quaisquer estilos que possam estar sendo aplicados por outros seletores do bootstrap. */

/* inputs senha e email */
.form-control:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  transition: background-color 0s 9999s;
  -webkit-text-fill-color: #ffffff !important;
} 

.form-control.preenchido {
  background-color: transparent;
  color: #ffffff;
}

.form-control {
padding: 6px;
border: none;
border-radius: 0px;
box-shadow: none;
border-bottom: 2px solid #ffffff;
background-color: transparent;
color:#ffffff;
}

.form-control:focus {
border-bottom: 2px solid #ffffff ;
box-shadow: none;
color: #ffffff;
background-color: transparent;
}
.form-outline mb-4 {
  border: solid;
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
}

.form-label {
display: none;
}

/* .form-control:focus {
border-bottom: 2px solid #ffffff; 
box-shadow: none;
background-color: transparent;
} */



.form-container-primeiroacesso{
font-family: "Nunito", sans-serif;
display: flex;
justify-content: center;
align-items: center;

}

#form2Example18::placeholder {
  color: #ffffff85;
  }
  
#form2Example28::placeholder {
  color: #ffffff85;
  }

#new_password::placeholder {
  color: #ffffff85;
  }

#email::placeholder {
  color: #ffffff85;
  }

#verification_code::placeholder {
  color: #ffffff85;
  }

.botao-voltar {
position: top;

}

.botao-voltar-senha {
position: top;
} 

.hidden {
  display: none;
}


/* .error_message {
  color: #ffffff85; 
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* #error_message {
  display: none;
}

#error_message.active {
  color: #ffffff85; 
  display: flex;
  justify-content: center;
  align-items: center;
} */




/* Botão de redefinir senha */
#resetPasswordButton {
  margin-top: 4rem;
  width: 100%;
  max-width: 400px;
}

#sendCodeButton {
  margin-top: 4rem;
  width: 100%;
  max-width: 400px;
}

#new_password {
  margin-top: 1.6rem;
  width: 100%;
  max-width: 400px;
}



.form-container-esquecisenha{
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container-primeiroacesso{
  display: flex;
  justify-content: center;
  align-items: center;
}



/* Adicione ao final do CSS existente */

/* Estilo responsivo para dispositivos móveis */
@media (max-width: 768px) {
  .container-fluid {
    flex-direction: column;
    align-items: center;
  }

  .form-container,
  .info-container-fluid {
    width: 100%;
    margin: 70px 0;
  }

  .form-container {
    height: auto; /* Ajusta altura para conteúdo dinâmico */
    padding: 20px; /* Adiciona espaçamento interno */
  }

  .info-container h1 {
    font-size: 1.8rem; /* Reduz o tamanho do texto para telas menores */
  }

  .info-container button {
    font-size: 1rem;
    padding: 8px 15px;
  }
}

.logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.logo {
  width: 50%; /* ajuste o tamanho da logo conforme necessário */
}