* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans","San serif";
  color: #fff;
  font-weight: 600;
}
/*Utility*/
.regular-txt {
}
/*Utility*/
body {
  background-image: url(assets/bg.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
}
body::before {
  position: absolute;
  content: "";
  background-color: rgb(0, 0, 0, 0.15);
  width: 100%;
  height: 100dvh;
  /* backdrop-filter: blur(15px); */
}
.main {
  width: 300px;
  height: 496px;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgb(0, 0, 0, 0.15),
    rgb(255, 255, 255, 0.15)
  );
  border-radius: 12px;
  backdrop-filter: blur(100px);
  padding: 20px;
}
/*Start header*/
.input-container {
  position: relative;
  margin-bottom: 25px;
}
.input-container .city-input {
  width: 100%;
  padding: 10px 16px;
  border-radius: 99px;
  /* border: none; */
  border: 3px solid transparent;
  background-color: rgb(0, 0, 0, 0.15);
  outline: none;
  font-weight: bold;
  transition: 0.25s;
}
.input-container .city-input:focus {
  border: 3px solid rgb(0, 0, 0, 0.15);
}
.input-container .city-input::placeholder {
  color: rgba(255, 255, 255, 0.754);
}
.input-container .search-butoom {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  cursor: pointer;
}
.input-container .search-butoom span {
}

/*End header*/
/*Start Weather info*/
.weather-info {
  /* border: 1px solid; */
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.location-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.location {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  gap: 6px;
}
.weather-summary-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.weather-summary-img {
  width: 120px;
  height: 150px;
}
.weather-summary-info {
  text-align: left;
}
.weather-conditions-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.condition-item {
  display: flex;
  align-items: center;
  gap: 9px;
}
.condition-item i {
  font-size: 30px;
}
.forecast-items-contaier {
  display: flex;
  gap: 15px;
  overflow-x: scroll;
  padding-bottom: 12px;
}
.forecast-items-contaier::-webkit-scrollbar {
  height: 8px;
}
.forecast-items-contaier::-webkit-scrollbar-track {
  background-color: rgb(0, 0, 0, 0.1);
  border-radius: 99px;
}
.forecast-items-contaier::-webkit-scrollbar-thumb {
  background-color: rgb(0, 0, 0, 0.15);
  border-radius: 99px;
}
.forecast-item {
  min-width: 70px;
  background: rgb(255, 255, 255, 0.1);
  display: flex;
  gap: 6px;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  transition: 0.3s;
}
.forecast-item:hover {
  background-color: rgb(255, 255, 255, 0.15);
}
.forecast-item-img {
  width: 35px;
  height: 35px;
}
/*End Weather info*/
/*Start Section Message*/
.section-message img {
  height: 180px;
  width: fit-content;
}
.section-message {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 25%;
}
/*End Section Message*/
