@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;500&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Oswald", sans-serif;
}

.wrapper {
  max-width: 520px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

a {
  text-decoration: none;
}

.mt-20 {
  margin-top: 20px;
}

.flex {
  display: flex;
}

.content-center {
  justify-content: center;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.section {
  background-color: white;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  padding: 20px;
  width: 100%;
  border-radius: 5px;
}

.section .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section .logo img {
  height: 75px;
  padding: 5px;
  width: auto;
  position: relative;
  top: -50px;
  background-color: white;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.section .logo h1 {
  position: relative;
  top: -40px;
  font-size: 23px;
  color: gray;
}

.section p {
  font-size: 21px;
}

.section p.small {
  font-size: 16px;
  color: gray;
  margin-top: 20px;
}

.section p.middle {
  font-size: 16px;
  font-weight: 300;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.buttons button,
.form button {
  width: 100%;
  padding: 15px;
  color: white;
  background: #3e44f6;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 45px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.buttons button:hover {
  transform: scale(1.02);
}

.field {
  display: flex;
  flex-direction: column;
}

.field input {
  margin-top: 3px;
  margin-bottom: 10px;
  padding: 10px 3px;
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  outline: none;
  font-size: 16px;
}

form {
  margin-top: 20px;
}

.section.form p {
  font-size: 18px;
  max-width: 90%;
  margin-top: 10px;
  font-weight: 300;
}

.main .question,
.main .form {
  display: none;
}

.main .question:nth-child(2) {
  display: block;
}

.bottom {
  padding-top: 10px;
  border-top: 1px solid gray;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: gray;
}

.bottom svg {
  height: 30px;
  width: auto;
}

.link {
  display: inline-block;
  background: blue;
  color: white;
  border-radius: 3px;
  text-align: center;
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  transition: 0.3s;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.link:hover {
  transform: scale(1.02);
}

@media screen and (max-width: 385px) {
  h2 {
    font-size: 20px;
  }
  .section p {
    font-size: 20px;
  }
}
