/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 30px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
}

input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  outline: none;
  color: #333;
  transition: box-shadow 0.3s ease;
}

input:focus {
  box-shadow: 0 0 0 2px #00c6ff;
}

button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
}

#weatherResult {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#weatherResult h2 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #ffffff;
}

#weatherResult p {
  margin: 5px 0;
}
