form {
  margin: 0 auto;
  width: 400px;
  background: #1c1c3c; /* Fondo elegante */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  font-family: 'Poppins', sans-serif;
}

label {
  display: block;
  margin-top: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #f6f6f6;
}

input, textarea {
  width: 100%;
  background: #0B0B3B;
  border: 2px solid #444;
  padding: 12px;
  margin-top: 8px;
  font-size: 16px;
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #4CAF50; /* Verde llamativo */
  outline: none;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

textarea {
  height: 150px;
  resize: none;
}

#submit {
  width: 100%;
  height: 45px;
  border: none;
  margin-top: 25px;
  cursor: pointer;
  background: linear-gradient(135deg, #4CAF50, #2E8B57);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.3s ease;
}

#submit:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #2E8B57, #4CAF50);
}

