body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to right, #E8F9FD, #a4e4ee);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.contenedor {
  background: white;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

h1 {
  color: #333;
  margin-bottom: 20px;
}

input[type="text"] {
  padding: 12px 20px;
  font-size: 16px;
  width: 70%;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  padding: 12px 20px;
  font-size: 16px;
  background-color: #00c6e4;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0AA1DD;
}

#datosClima {
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
}

#datosClima h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

#datosClima p {
  margin: 5px 0;
  color: #555;
}

#datosClima img {
  display: block;
  margin: 10px auto;
  width: 100px;
  height: 100px;
}

.error {
  color: red;
  font-weight: bold;
  margin-top: 20px;
}
