/* Fuente Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  margin: 5px;
  padding: 5px;
  background: #000000;
}

main {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h3 {
  color: #222;
  font-weight: 500;
}

form div {
  margin-bottom: 15px;
}

label {
  display: block;
  padding-left: 10px;
  padding-right: 20px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
  width: 100%;
  padding: 12px 15px;  /* padding más cómodo para escribir */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
}

input[type="checkbox"] {
  margin-right: 8px;
}

button[type="submit"] {
  background-color: #f7d23e;  /* amarillo */
  color: #000000;             /* texto negro */
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 12px;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #e1c72f;  /* amarillo oscuro en hover */
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
}
