body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.auth-wrapper {
  max-width: 400px;
  width: 100%;
  z-index: 2;
  position: relative;
  background: #1e1e2fb0;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.auth-wrapper__title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.auth-wrapper__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.auth-wrapper__input {
  width: 100%;
  margin-bottom: 20px;
}

.auth-wrapper__btn {
  width: 100%;
  font-size: 1.1rem;
}

.auth-wrapper__footer {
  text-align: center;
  margin-top: 20px;
  color: #fff;
  font-size: 0.95rem;
}

.auth-wrapper__footer a:hover {
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .auth-wrapper {
    padding: 30px 25px;
  }

  .auth-wrapper__title {
    font-size: 1.6rem;
  }

  .auth-wrapper__label {
    font-size: 0.9rem;
  }

  .auth-wrapper__btn {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .auth-wrapper {
    padding: 25px 20px;
  }

  .auth-wrapper__title {
    font-size: 1.4rem;
  }

  .auth-wrapper__footer {
    font-size: 0.85rem;
  }
}
