/* Start custom CSS for html, class: .elementor-element-4af8c08 */body, html {
  background-color: #1000; /* Fundo preto */
  color: #ffff; /* Texto branco */
  font-family: 'Sora';
}

/* Estilos para os inputs */
input[type=text] {
  width: 100%;
  padding: 20px 20px;
  margin: 2px 0;
  font-size: 17px;
  box-sizing: border-box;
  border-radius: 15px; /* Bordas arredondadas */
  background-color: #212121; /* Fundo preto */
  color: #ffff; /* Texto branco */
  border: none; /* Sem borda */
}

input[type=text]:focus {
  outline: none; /* Remove o contorno ao focar */
}

/* Estilos para o botão */
button._submit {
  width: 100%;
  padding: 20px;
  font-family: 'Sora';
  font-weight: 600;
  font-size: 23px;
  color: #14133C; /* Cor do texto */
  border-radius: 50px; /* Bordas arredondadas */
  border: none; /* Sem borda */
  background-image: linear-gradient(to right, #00C6FF, #0072FF); /* Gradiente azul */
  box-shadow: 0px 4px 0px #0052D4; /* Sombra com tom mais escuro de azul */
  margin-top: 22px;
  margin-bottom: 10px;
  transition: background-color 0.3s; /* Transição suave ao mudar de cor */
}

button._submit:hover {
  background-image: linear-gradient(to right, #00E6FF, #0093FF); /* Gradiente azul mais claro no hover */
}/* End custom CSS */