* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c517c;
}

#loading-container {
  opacity: 1;
  transition: opacity 0.5s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1000;
}
#loading-container #spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#loading-container.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.container {
  position: relative;
  width: 400px;
  height: 105px;
  background: #FAF9F6;
  padding: 28px 32px;
  overflow: hidden;
  border-radius: 18px;
  font-family: "Roboto", sans-serif;
  transition: 0.6s ease-out;
}
.container h1 {
  font-size: 24px;
}
.container .search-container {
  width: 100%;
  height: min-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container .search-container input[type=text] {
  color: #0c517c;
  width: 80%;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  padding-left: 32px;
}
.container .search-container input::placeholder {
  font-size: 20px;
  font-weight: 500;
  color: #0c517c;
  text-transform: capitalize;
}
.container .search-container button {
  cursor: pointer;
  width: 50px;
  height: 50px;
  color: #0c517c;
  background: #dff6ff;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.4s ease;
}
.container .search-container button :hover {
  color: #FAF9F6;
  background: #0c517c;
}
.container .search-container i {
  position: absolute;
  color: #0c517c;
  font-size: 28px;
}
.container .weather-info {
  text-align: center;
}
.container .weather-info p {
  color: #0c517c;
  font-size: 14px;
  font-weight: 500;
}
.container .weather-info img {
  width: 45%;
  margin-top: 30px;
}

.weather-details {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.weather-details i {
  color: #0c517c;
  font-size: 26px;
  margin-right: 10px;
  margin-top: 6px;
}
.weather-details span {
  color: #0c517c;
  font-size: 22px;
  font-weight: 500;
}
.weather-details p {
  color: #0c517c;
  font-size: 14px;
  font-weight: 500;
}

.weather-details .humidity, .weather-details .wind {
  display: flex;
  align-items: center;
  width: 50%;
  height: 100px;
}

.weather-details .humidity {
  padding-left: 20px;
  justify-content: flex-start;
}

.weather-details .wind {
  padding-right: 20px;
  justify-content: flex-end;
}

.weather-info, .weather-details {
  scale: 0;
  opacity: 0;
}

/* Styles for the forecast container */
#forecast-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  background-color: #f5f5f5;
  border-top: rgba(12, 81, 124, 0.5) 1px solid;
  color: #0c517c;
}

/* Styles for individual forecast days */
.forecast-day {
  text-align: center;
  padding: 10px;
}

/* Style for forecast day headings */
.forecast-day h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* Style for temperature and description */
.forecast-day p {
  font-size: 1rem;
  margin: 0;
}

/* Add styles for the loading icon or spinner, if applicable */
.loading-icon {
  /* Styles for the loading icon or spinner */
}

.fadeIn {
  animation: 0.5s fadeIn forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to {
    scale: 1;
    opacity: 1;
  }
}

/*# sourceMappingURL=main.css.map */
