* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
  overflow-x: hidden;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1 {
  font-size: 3.2rem;
  line-height: 1.3;
  text-align: center;
  color: white;
  text-transform: uppercase;
}

p {
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: center;
  color: white;
}

.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.lottie-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.lottie {
  width: 600px;
  aspect-ratio: 16 / 9;
}

.form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

input[type='email'] {
  padding: 1rem;
  border-radius: 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  color: white;
  outline: none;
  font-size: 1rem;
  width: 50%;
  margin: 0 auto;
}

button {
  background-color: white;
  border: 2px solid transparent;
  border-radius: 0.8rem;
  padding: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  width: 50%;
}

button:hover {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 600px) {
  .lottie {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  button {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 800px) {
  .form {
    flex-direction: column;
  }
  input[type='email'],
  button {
    width: 100%;
  }
}
