* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
}

body {
  background: #0c0d3f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
}

h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 26px;
  margin-top: 126px;
}

input {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  height: 74px;
  width: 342px;
  padding-left: 20px;
  font-weight: 500;
  font-size: 40px;
  line-height: 47px;
  color: #ffffff;
  opacity: 0.7;
}

.input-min {
  margin-right: 62px;
}

button {
  background: #aec346;
  box-shadow: 0px 18px 40px rgba(174, 195, 70, 0.35);
  border-radius: 10px;
  width: 342px;
  height: 72px;
  border: none;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
  margin-top: 80px;
  cursor: pointer
}

button:hover {
  background-color: #9fbb2d;
}

button:active {
  background-color: #8baa26;
}