* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.app {
  background: url(./images/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  gap: 20px;
}

.title,
.text {
  width: 35%;
}

.form {
  width: 30%;
  background: #fff;
  border-radius: 50px;
  box-shadow: inset 0 2px 10px #00000070;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1% 0;
  border: 5px #d9ff00 solid;
}

.qt {
  width: 80%;
}

.btn {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

input {
  width: 80%;
  padding: 20px;
  border-radius: 50px;
  border: #ff6600b7 2px solid;
  margin: 20px 0;
  font-size: 1.8rem;
  text-align: center;
}

input::placeholder {
  color: #a3a3a3b9;
}

@keyframes scaleAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.title img,
.text img {
  animation: scaleAnimation 1.5s infinite ease-in-out;
}

@media screen and (max-width: 768px) {
  .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 90%;
  }

  .form {
    width: 90%;
    padding: 5% 0;
  }

  input {
    width: 90%;
    padding: 10px;
    border-radius: 10px;
    border: #ff6600b7 1px solid;
    margin: 20px 0;
    font-size: 0.8rem;
  }

  .qt {
    width: 90%;
  }

  .title,
  .text {
    width: 90%;
  }
}
