.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
}

.password-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.password-container input {
    width: 100%;


}

.toggle-password {
    position: absolute;
    right: 10px;

    top: 40%;
    transform: translateY(-50%);

    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password img {
    width: 20px;
    height: 20px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 15px;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.checkbox-container label {
    font-size: 11px;
    color: #fff;
}

#trigger {
    position: relative;
    top: -260px;
    right: -150px;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    font-weight: 800;
    padding: 2px;
}



/* Centraliza o WhatsApp abaixo do botão */
#form-box .whatsapp-img{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 12px;

  /* mata qualquer CSS antigo que esteja flutuando o ícone */
  position: static !important;
  float: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
}

#form-box .whatsapp-img a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#form-box .whatsapp-img img{
  width: 30px;
  cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    padding: 20px;
    background: #fff;
    z-index: 1000;
}

.overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}



#sair,
#continuar {
    background-color: #1d447f;
    color: #fff;
    border: none;
    margin-right: 5px;
    padding: 5px;
}