   caixaForm {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      /*background-color: #f2f2f2;*/
    }

    .overlayForm {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente escuro */
      display: none;
      z-index: 1;
    }

    .containerForm {
    position: fixed;
    width: 412px;
    height: 100vh; /* Ocupa toda a altura da página */
    background-color: #fff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.2s ease-in-out;
    right: 0;
    z-index: 9999999999;
    margin-top: -128px;
    overflow-y: auto; /* Adiciona a barra de rolagem vertical quando necessário */
}

.form-containerForm {
    padding: 60px;
}

    #openBtnForm {
      cursor: pointer;
      /*background-color: #4CAF50;*/
      color: #fff;
      border: none;
      padding: 10px;
      border-radius: 5px;
      outline: none;
    }

    .closeBtnForm {
  position: absolute;
  top: 2%; /* Ajuste a porcentagem conforme necessário */
  right: 5%; /* Ajuste a porcentagem conforme necessário */
  cursor: pointer;
    }