* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Sen", serif;
}

.wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: normal;
  height: 100vh;
  background: url(../img/wrapper.png) no-repeat center;
  background-size: cover;
}
.wrapper main {
  max-width: 360px;
  width: 100%;
  height: 100%;
  background: url(../img/middle-wrapper.png) no-repeat center;
  background-size: cover;
  padding: 22px;
  overflow-y: auto;
  scrollbar-width: none;
}
.wrapper main form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 34px;
}
.wrapper main form input,
.wrapper main form button {
  height: 100%;
  border-radius: 24px;
  outline: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  letter-spacing: 1px;
}
.wrapper main form input {
  background: transparent;
  border: 1px solid #fff;
  width: 60%;
  padding: 4px 12px;
  text-transform: capitalize;
}
.wrapper main form input::-moz-placeholder {
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}
.wrapper main form input::placeholder {
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}
.wrapper main form button[type=submit] {
  background: #4084df;
  border: 0;
  width: 34px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.wrapper main form button[type=submit] span {
  font-size: 18px;
}
.wrapper main h1,
.wrapper main h4,
.wrapper main h3 {
  text-align: center;
  font-weight: 500;
}
.wrapper main h1 {
  color: #fff;
  margin: 20px 0 1px;
  font-size: 22px;
}
.wrapper main h4 {
  color: #cacaca;
  font-size: 14px;
}
.wrapper main h3 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin-top: 6px;
}
.wrapper main .wheather-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.wrapper main .wheather-icon-box img {
  width: 237px;
  height: 247px;
}
.wrapper main .main-wheather-info {
  display: flex;
  justify-content: space-around;
  align-items: normal;
  position: fixed;
  bottom: 40px;
  left: 50%;
  width: 360px;
  transform: translateX(-50%);
}
.wrapper main .main-wheather-info div.inner-wheather-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.wrapper main .main-wheather-info div.inner-wheather-info span {
  color: #fff;
  font-size: 28px;
}
.wrapper main .main-wheather-info div.inner-wheather-info div h6 {
  font-size: 26px;
  font-weight: 400;
}
.wrapper main .main-wheather-info div.inner-wheather-info div h6,
.wrapper main .main-wheather-info div.inner-wheather-info div h5 {
  color: #fff;
  font-weight: 400;
}

@media (max-width: 361px) {
  .wrapper main {
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */