body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  background: url('/login/7.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
p {
  color: var(--color-h2);
}
.main-container {
  width: 400px;
  height: 100vh;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
  left: 0;
  top: 0;
  background: var(--bg-overlay-tp);
  backdrop-filter: blur(10px);
}

.main-container > img {
  padding: 0 50px;
  max-height: 100px;
}

.login-container {
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-content: center;
  justify-content: center;
  text-align: center;
}

.login-box {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  text-align: left;
  gap: 10px;
}

@media (max-width: 768px)  {

  .main-container {
    width: 100vw;
    gap: 10px;
  }
}

.author-link {
  position: fixed;
  right: 10px;
  bottom: 10px;
  color: var(--color-h2);
  text-shadow: 1px 1px 2px #000;
}