@charset "UTF-8";

html,
body {
  background-color: #222 !important;
  background-image: none !important
}

.login-link {
  color: #666;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 22px;
  margin-bottom: 10px;
  display: block;
  text-align: center;
  margin-top: 20px;
}

.login-link a {
  text-decoration: none;
  color: #666;
  cursor: pointer;
}

.login-link a:hover {
  text-decoration: none;
  color: #2087e2;
}

.display-box {
  display: none;
}

.display-box.active {
  display: block;
}

.login-box {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border: 5px #ccc solid;
  padding: 30px;
  margin-bottom: 80px;
  margin-top: 80px;
  background-color: #f3f3f3;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: fade_in_1 0.6s ease-in-out 0s forwards;
  opacity: 0;
}

@keyframes fade_in_1 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


.login-box h1 {
  text-align: center;
  font-size: 20px;
  color: #333;
  margin: 10px 0 10px 0;
}