.body-form {
  margin-top: 7vh;
  display: flex;
  justify-content: center;
}

.cadastro-container {
  background-color: white;
  padding: 2.2rem;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 40, 70, 0.08);
  border: 1px solid #d5e1ec;
  width: 100%;
  max-width: 500px;
}

.cadastro-container input[type="email"],
.cadastro-container input[type="password"],
.cadastro-container input[type="text"],
.cadastro-container input[type="password"]
 {
    width: 100%;
    padding: 8px;
    margin: 8px 0 16px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
  }

.cadastro-container select{
    margin-bottom: 15px;
}

.btns_solicitar_cadastro{
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 80%;
}

.btn_cadastrar{
    width: 40%;
    padding: 8px;
    background-color: #0b6bcb;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

.btn_sair{
  width: 40%;
  padding: 8px;
  background-color: #FB7D92;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn_cadastrar:hover {
    background-color:  #FB7D92;
  }

.btn_sair:hover {
  background-color:  #007bff;
  color: white;
  text-decoration: none;
}


  /* Estilo dos títulos e espaçamento */
.cadastro-container h3 {
    margin: 15px auto;
    color: #333;
    text-align: center;  
    font-weight: bold;
  }

