@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/earthfast/fonts/Inter-Latin-400.woff2') format('woff2');
}

body {
  color: #ffffff;
  background-color: #01131F;
  font-family: 'Inter', sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.logo__image {
  width: 42px;
  height: 42px;
}

.logo__title {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.description-container {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease-out forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.description-text {
  color: #CBCBCB;
  font-weight: normal;
  font-size: 30px;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.securely-text {
  color: white;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
  margin: 20px 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#error {
  color: #FF4D4D;
  font-size: 16px;
  margin: 2rem auto 0;
  max-width: 900px;
  text-align: center;
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .logo__image {
    width: 30px;
    height: 30px;
  }

  .logo__title {
    font-size: 30px;
  }

  .description-text {
    font-size: 16px;
  }

  .spinner {
    width: 40px;
    height: 40px;
    border-width: 4px;
  }

  #error {
    font-size: 18px;
  }
}
