body {
  background-image: url(images/formulario.jpg);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif
  
  
}

.container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

.form-container {
  background: #1e1e1e;
  margin: auto;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 15px teal;
  width: 280px;
  transform: scale(0.9);
  transition: transform 0.3s ease-in-out;
}

.form-container:hover {
  transform: scale(1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: teal;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: teal;
}

input {
  width: 100%;
  padding: 7px;
  border: 1px solid teal;
  border-radius: 5px;
  background-color: #2b2b2b;
  color: white;
  transition: border-color 0.3s;
}

input:focus {
  border-color: teal;
  outline: none;
}

button {
  width: 100%;
  padding: 10px;
  background-color: teal;
  color: white;
  border: none;
  border-radius: 5px; 
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: teal;
}


footer {
  background-color: #2b2e31;
  color: white;
  text-align: center;
  padding: 3px;
  margin-top: 90px;
}

header {
  background-color: #1e1e1e;
  color: aliceblue;
  align-items: center;
  justify-content: space-between;
}