main .wrapper {
  height: 100vh;
  margin-top: 100px;
}

.text {
  margin-top: 30px;
}

form {
  margin-bottom: 70px;
  margin-top: 70px;
  padding: 20px 0;
  background-color: #316be8;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  border-radius: 20% 50%/50% 50%;
}

input {
  width: 70%;
  padding: 0 10px;
  height: 50px;
  border-radius: 40px;
  border: 1px solid #000;
  margin-top: 50px;
  margin-bottom: 40px;
  box-shadow: 0px 4px 8px #81c5d9;
  transition: box-shadow 0.3s ease;
  border: none;
}

input:focus {
  outline: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
}

button {
  margin: 0 auto;
  display: block;
  border-radius: 40px;
  height: 50px;
  padding: 0 50px;
  border: none;
  color: #4b78c7;
  background-color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

button:hover {
  background-color: #6aabe4;
  color: #fff;
}

button:active {
  background-color: #a8a8a8;
}
