    .contacto-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #1f1f1f;
  color: #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.2);
  font-family: 'Segoe UI', sans-serif;
}

.contacto-container h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.contacto-form label {
  display: block;
  margin: 10px 0 5px;
}

.contacto-form input[type="text"],
.contacto-form input[type="email"],
.contacto-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #2b2b2b;
  color: #fff;
}

.contacto-form textarea {
  resize: vertical;
}

.contacto-form .checkbox {
  margin: 15px 0;
  font-size: 0.95rem;
}

.contacto-form .checkbox a {
  color: #1a73e8;
  text-decoration: none;
}

.contacto-form .checkbox a:hover {
  text-decoration: underline;
}

.contacto-form button {
  background-color: #1a73e8;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.contacto-form button:hover {
  background-color: #1664c1;
}

.contacto-ok {
  text-align: center;
  background: #2d682d;
  padding: 20px;
  border-radius: 6px;
  color: #c3f3c3;
}

