main .wrapper {
  height: 100vh;
  text-align: center;
  margin-top: 100px;
}

.text {
  color: #000000;
  margin-top: 30px;
}

.title {
  color: #25bb4a;
}

input {
  width: 70%;
  padding-right: 10px;
  padding-left: 10px;
  height: 50px;
  border-radius: 20px;
  margin-top: 50px;
  margin-bottom: 40px;
  box-shadow: 0px 4px 8px #5e5e5eb1;
  transition: box-shadow 0.3s ease;
  border: none;
  border: 1px solid #ff9d00;
}

input:focus {
  outline: none;
  box-shadow: 0px 4px 12px #00000080;
}

button {
  margin: 0 auto;
  display: block;
  border-radius: 20px;
  height: 50px;
  padding: 0 50px;
  border: none;
  background-color: #fed879;
  color: #161616;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0px 4px 8px #0000004d;
  transition: box-shadow 0.3s ease;
}

button:hover {
  background-color: #ffb300;
  color: #fff;
}

button:active {
  background-color: #c68a00;
  color: #fff;
}
