html, body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, rgb(0,9,42), #000000);
  }


  .header {
    display: flex;
    justify-content: center; /* Centraliza todos os itens */
    align-items: center; /* Centraliza verticalmente */
    margin-top: 3em;
}

  #logo{
   
   width: 10em;
    height: auto;
    margin-right: 20px;
  
  }

  .language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown .dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding-bottom: 3px;
    transition: border-bottom 0.3s ease;
}

.language-dropdown .dropdown-btn img {
    vertical-align: middle;
    width: 35px;
    height: 25px;
    margin-right: 20px;
}

.language-dropdown .dropdown-content img {
    width: 30px;
    height: 20px;
    margin-right: 5px;
}

.language-dropdown .dropdown-content {
    display: none;
    position: absolute;
    left: 35%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    min-width: 70px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    padding: 5px 0;
    margin-top: 15px;
}

.language-dropdown .dropdown-content a {
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.language-dropdown .dropdown-content a:hover {
    background-color: rgba(77, 77, 77, 0.5);
}

.language-dropdown .dropdown-content.show {
    display: block;
}

  .logo{
      font-family: "Bruno Ace", Sans-serif;
      color: #fff;
      font-weight: bold;
      font-size: 1.5em;
         text-align: center;
  }
  .form-login{
  text-align: center;
  }
  
  .title_login{
      margin-top: 1em;
      font-weight: 600;
          font-family: "Poppins", Sans-serif;
  color: #fff;
      
      font-size: 3.1em;
  
  
  }
  .description-login{
  margin-top: 0.6em;
          font-family: "Poppins", Sans-serif;
  color: #fff;
      
      font-size: 1.1em;
  
  }

  .description-terms{
    margin-top: 0.6em;
            font-family: "Poppins", Sans-serif;
    color: #fff;
        
        font-size: 0.9em;
    
    }
  
  .description-account{
  margin-top: 1em;
          font-family: "Poppins", Sans-serif;
  color: #fff;
      
      font-size: 0.8em;
  
  }
  
  .description-account a {
    color: #ece2e2;; /* Usa a cor do elemento pai */
    text-decoration: underline; /* Remove o sublinhado */
  }
  .logininput {
    
    display: flex;
    flex-direction: column;
    max-width: 20em;
    align-content: center;
    text-align: center;
    margin-top: 0.4em;
    margin-left: auto;
      margin-right: auto;
  
  
  
  }
  
  
  
  .logininput label.text {
      font-family: Arial, sans-serif;
      font-weight: 500;
    font-size: 0.75rem;
    color: #fff;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    width: fit-content;
    background-color: #000;
    
    
  }
  .logininput input[type=text].input::placeholder{
  padding-left: 0.5em;
  
  }
  
  .logininput input[type=password].input::placeholder{
  padding-left: 0.5em;
  
  }
  .logininput input[type=text].input {
        width: 20em;
    font-size: 0.75rem;
    border-radius: 5px;
    background-color: transparent;
      height: 50px;
      border: 1px solid white;
      color: lightgray;
      font-size: 16px;
      font-family: Arial, sans-serif;
      border-radius: 10px;
  
  }
  
  .logininput input[type=password].input {
        width: 20em;
    font-size: 0.75rem;
    border-radius: 5px;
    background-color: transparent;
      height: 50px;
      border: 1px solid white;
      color: lightgray;
      font-size: 16px;
      font-family: Arial, sans-serif;
      border-radius: 10px;
  
  }
  
  .logininput input[type=text].input:focus {
    outline: none;
  }
  .forgot{
      text-align: center;
      margin-left: 12em;
      margin-top: 0.4em;
      color: #fff;
      font-size: 0.9em;
  }
  
  .forgot a {
    color: #ece2e2;; /* Usa a cor do elemento pai */
    text-decoration: none; /* Remove o sublinhado */
  }
  
  .button-login {
      margin-top: 1em;
    font-size: 1.1em;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    padding: 0.7em 2em;
    border: 0px solid #fff;
    border-radius: 0.5em;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease all;
    z-index: 1;
    background-color: #042551;
  }
  
  .button-login:before {
      border-radius: 0.5em;
    transition: 0.3s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: #0a66a0;
    z-index: -1;
  }
  
  .button-login:hover, button:focus {
    color: white;
  }
  
  .button-login:hover:before, button:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
  }
  
  .button-login:active {
    transform: scale(0.9);
  }
  
  .flag{
  
      width: 50px;
      height: auto;
  }


  /* Estilizando o container do checkbox */
.custom-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 30px; /* Espaçamento para o checkmark */
  cursor: pointer;
  user-select: none;
  font-size: 16px;
}

/* Ocultando o checkbox padrão */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Estilizando o checkmark */
.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px; /* Ajuste o tamanho conforme necessário */
  width: 20px;  /* Ajuste o tamanho conforme necessário */
  background-color: transparent; /* Fundo transparente */
  border: 1px solid #2196F3; /* Contorno azul */
  border-radius: 4px; /* Borda arredondada */
  transition: background-color 0.3s, border-color 0.3s;
}

/* Estilizando o checkmark quando o checkbox está selecionado */
.custom-checkbox input:checked ~ .checkmark {
  background-color: #042551; /* Cor de fundo azul quando selecionado */
  border-color: #2196F3; /* Manter a borda azul */
}
#error{

  color: red;
}

.title_reset{
  margin-top: 1em;
  font-weight: 600;
      font-family: "Poppins", Sans-serif;
color: #fff;
  
  font-size: 1.5em;

}
/* Adicionando o ícone de marcação (checkmark) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none; /* Inicialmente invisível */
}

/* Estilo para o checkmark quando o checkbox está selecionado */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white; /* Cor da marcação */
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}


