@charset "UTF-8";
/**
 * Impression Layout
 * Auth felületek - Login, Password Change, stb.
 */
/**
 * Design Variables
 * Szín paletta és alap definíciók
 */
body {
  position: fixed;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: #181818;
  background-image: url("../img/im1.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 8, 0.4);
  z-index: 1;
}
body .wrap {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
body .wrap .container {
  padding: 0;
  max-width: unset;
}

#impression-content {
  position: absolute;
  max-width: 420px;
  max-height: 90%;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(173, 216, 230, 0.3);
  border-radius: 0.5rem;
  left: 65%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  overflow: auto;
  box-sizing: border-box;
  z-index: 10;
  animation: slideInUp 0.4s ease-out;
}
#impression-content::-webkit-scrollbar {
  width: 6px;
}
#impression-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.15);
}
#impression-content::-webkit-scrollbar-thumb {
  background: rgba(173, 216, 230, 0.3);
  border-radius: 3px;
}
#impression-content::-webkit-scrollbar-thumb:hover {
  background: rgba(173, 216, 230, 0.8);
}

#impression-inner h1, #impression-inner h2, #impression-inner h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgb(9.785, 9.785, 9.785);
}
#impression-inner h1 {
  font-size: 2rem;
  font-weight: 700;
}
#impression-inner .text-muted {
  color: rgb(196.35, 196.35, 196.35);
  font-size: 0.875rem;
}
#impression-inner p {
  color: rgb(229.5, 229.5, 229.5);
}
#impression-inner button,
#impression-inner .btn {
  width: 100%;
}

footer.footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #999999;
  z-index: 5;
  text-shadow: 0 1px 2px rgb(9.785, 9.785, 9.785);
}
footer.footer a {
  color: rgb(196.35, 196.35, 196.35);
}
footer.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  #impression-content {
    animation: none;
  }
}
@media (max-width: 1200px) {
  #impression-content {
    max-width: 450px;
    left: 50%;
  }
}
@media (max-width: 768px) {
  #impression-content {
    max-width: 100%;
    max-height: 100%;
    height: 100vh;
    width: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0;
    padding: 2rem 1.5rem;
    position: relative;
  }
}
@media (max-width: 480px) {
  #impression-content {
    padding: 1.5rem 1rem;
  }
  #impression-content #impression-inner h1 {
    font-size: 1.5rem;
  }
  #impression-content #impression-inner button, #impression-content #impression-inner .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}/*# sourceMappingURL=impression.css.map */