#banner {
    background-image:  url('../img/ojocegado.jpg');
    background-position: center;
}

main {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--textocolor);
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  margin: 40px auto;
}

main h2 {
  text-align: center;
  color: var(--textocolor);
  margin-bottom: 10px;
  margin-top: 0;
}

main p {
  text-align: center;
  font-style: italic;
  color: var(--textocolor);
  margin-bottom: 20px;
}

main label {
  display: block;
  margin-top: 15px;
  color: var(--textocolor);
  font-weight: bold;
}

main input,
main textarea,
main select {
  width: 100%;
  margin-top: 5px;
  padding: 8px;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--textocolor);
}

main input:focus,
main textarea:focus,
main select:focus {
  outline: 1px solid var(--hovertextocolor);
  background: rgba(255, 255, 255, 0.15);
}

main button {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: var(--hovertextocolor);
  color: white;
  font-weight: bold;
}

main button:hover {
  background-color: var(--hovertextocolor2);
}
