@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
html {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  background-image: url(../assets/images/bg-3.jpg);
  background-color: #121212;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Ubuntu", sans-serif;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (orientation: landscape) and (hover: none) and (pointer: coarse) and (max-width: 1000px) {
  body {
    align-items: flex-start;
    background-attachment: fixed;
  }
}
body * {
  box-sizing: border-box;
}
body main {
  background-color: rgba(255, 255, 255, 0.07);
  width: calc(100% - 2rem);
  height: -moz-max-content;
  height: max-content;
  max-width: 96%;
  color: white;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 4rem 4rem 6rem;
  border-radius: 0.5rem;
  border: 0.2rem solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px, 0 0 4rem rgba(8, 7, 16, 0.6);
}
body main h1 {
  margin-top: 0;
  margin-bottom: 3rem;
  font-size: 3rem;
}
body main form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* Mobile */
}
body main form input {
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 0.5rem;
  padding: 0 1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border: 0;
  outline: 0;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-family: inherit;
  border: solid rgba(112, 112, 112, 0.2) 0.15rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  text-align: center;
}
body main form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.3);
}
body main form label {
  font-weight: 400;
}
body main form .turnstile-wrapper {
  width: 100% !important;
  transform-origin: left top;
  margin: 1rem 0 2.5rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 360px) {
  body main form .turnstile-wrapper {
    transform: scale(0.9);
  }
}
@media (max-width: 320px) {
  body main form .turnstile-wrapper {
    transform: scale(0.8);
  }
}
body main form button {
  background-color: white;
  color: #080710;
  padding: 1rem 2rem;
  border: 0;
  font-size: 1.6rem;
  font-family: inherit;
  border-radius: 0.5rem;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-weight: 400;
}
body main form button:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */