* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #74ebd5, #acb6e5);
  color: #333;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 420px;
  text-align: center;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.search-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

input[type="text"] {
  padding: 10px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  width: 60%;
  font-size: 1rem;
  transition: 0.3s ease;
}

input[type="text"]:focus {
  border-color: #3498db;
  outline: none;
}

button {
  padding: 10px 15px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2980b9;
}

.weather-box {
  background-color: #ecf0f1;
  padding: 1rem;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}
