/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Page background */
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #74ebd5, #9face6);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px;
}

/* Heading */
h1 {
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Form */
form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

input {
  padding: 10px 15px;
  width: 220px;
  border-radius: 25px;
  border: none;
  outline: none;
  font-size: 16px;
}

button {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  background: #4a90e2;
  color: white;
  font-size: 16px;
  transition: background 0.3s ease;
}

button:hover {
  background: #357abd;
}

/* Weather container *