body {
  background-color: #cfc8bc;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

/* Weather Icon */
.weather-icon {
  width: 60px;
  height: 60px;
  vertical-align: middle;
  margin-right: 8px;
}
.weather-app {
  background-color: #ffffff;
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid #b9a8df;
  box-shadow: 0 30px 60px -10px rgba(40, 30, 70, 0.25);
}

header {
  border-bottom: 2px solid rgba(40, 30, 70, 0.18);
  padding-bottom: 30px;
}

.search-form {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.search-form-input {
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 8px;
  border: 2px solid #6b7fa3;
  background-color: #e3e8f2;
  width: 70%;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.search-form-input:focus {
  border-color: #7d68b8;
  background-color: #f0eaff;
  outline: none;
}

.search-form-button {
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  background-color: #7d68b8;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-form-button:hover {
  background-color: #6b58a8;
}

.weather-app-information {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

.weather-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.weather-details h1 {
  margin: 0;
  font-size: 36px;
  color: #3e3166;
}

.weather-meta {
  margin: 0;
  font-size: 16px;
  color: #455252;
  line-height: 1.4;
}

#description {
  text-transform: capitalize;
  color: #3e3166;
  font-weight: 500;
}

.weather-extra {
  margin: 0;
  font-size: 15px;
  color: #455252;
}

#humidity,
#wind-speed {
  font-weight: 600;
  color: #3e3166;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.weather-forecast-day {
  text-align: center;
  color: #556666;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather-forecast-icon {
  font-size: 38px;
  text-align: center;
}

.weather-forecast-temperature {
  text-align: center;
  margin-top: 10px;
  color: #3e3166;
  display: flex;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
}
footer {
  border-top: 2px solid rgba(40, 30, 70, 0.18);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #5c5c5c;
}

footer a {
  color: #7d68b8;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
