* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.app {
  background: url(./images/bg.webp) no-repeat center center;
  background-size: 100% 100%;
  background-position: center bottom;
  height: 100vh;
  max-width: 450px;
  overflow: hidden;
  padding: 3% 0;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 10px;
}

.content__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 3%;
  gap: 20px;
}

.btn {
  width: 100%;
}

.captcha {
  position: relative;
}

.tick {
  position: absolute;
  width: 40px;
  height: 40px;
  background: transparent;
  top: 49%;
  transform: translateY(-50%);
  left: 4.5%;
  border-radius: 5px;
}

.btn a.disabled {
  pointer-events: none;
  opacity: 0.8;
  filter: grayscale(100%);
  cursor: not-allowed;
}

.tick.active {
  background: url("./images/check.webp") no-repeat center center;
  background-size: contain;
}

/* @keyframes scaleAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.btn {
  animation: scaleAnimation 1.5s ease-in-out infinite;
} */

@media screen and (max-width: 768px) {
  .app {
    padding: 10%;
  }

  .logo {
    width: 40%;
  }
}
