@import url("css2.css");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-weight: 500;
}
html,
body {
  height: 100%;
/*  background-color: rgb(16, 163, 127);*/
  background: rgb(217,217,217);
  background: -moz-linear-gradient(155deg, rgba(217,217,217,1) 0%, rgba(237,237,237,1) 25%, rgba(195,195,195,1) 50%, rgba(237,237,237,1) 75%, rgba(217,217,217,1) 100%);
  background: -webkit-linear-gradient(155deg, rgba(217,217,217,1) 0%, rgba(237,237,237,1) 25%, rgba(195,195,195,1) 50%, rgba(237,237,237,1) 75%, rgba(217,217,217,1) 100%);
  background: linear-gradient(155deg, rgba(217,217,217,1) 0%, rgba(237,237,237,1) 25%, rgba(195,195,195,1) 50%, rgba(237,237,237,1) 75%, rgba(217,217,217,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d9d9d9",endColorstr="#d9d9d9",GradientType=1);
body {
  font-family: Oswald, sans-serif;
}
.wrapper {
  max-width: 520px;
  padding: 0px 20px;
  margin: 0px 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: rgba(0, 0, 0, 0.3) 0px 0px 15px;
  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: rgba(0, 0, 0, 0.3) 0px 0px 15px;*/
/*  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: linear-gradient(108deg,#0894FF,#C959DD 34%,#FF2E54 68%,#FF9004);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-radius: 45px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.3) 3px 3px 5px;
}
.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-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-bottom: 1px solid black;
  outline: none;
  font-size: 16px;
}
.form button {
  margin-top: 20px;
}
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: rgba(0, 0, 0, 0.3) 0px 0px 15px;
}
.link:hover {
  transform: scale(1.02);
}
@media screen and (max-width: 385px) {
  h2 {
    font-size: 20px;
  }
  .section p {
    font-size: 20px;
  }
}
