@font-face {
  font-family: 'CabinetGrotesk-Thin';
  src: url('fonts/CabinetGrotesk-Thin.woff2') format('woff2'),
       url('fonts/CabinetGrotesk-Thin.woff') format('woff'),
       url('fonts/CabinetGrotesk-Thin.ttf') format('truetype');
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Extralight';
  src: url('fonts/CabinetGrotesk-Extralight.woff2') format('woff2'),
       url('fonts/CabinetGrotesk-Extralight.woff') format('woff'),
       url('fonts/CabinetGrotesk-Extralight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Light';
  src: url('fonts/CabinetGrotesk-Light.woff2') format('woff2'),
       url('fonts/CabinetGrotesk-Light.woff') format('woff'),
       url('fonts/CabinetGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Regular';
  src: url('fonts/CabinetGrotesk-Regular.woff2') format('woff2'),
       url('fonts/CabinetGrotesk-Regular.woff') format('woff'),
       url('fonts/CabinetGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Medium';
  src: url('fonts/CabinetGrotesk-Medium.woff2') format('woff2'),
       url('fonts/CabinetGrotesk-Medium.woff') format('woff'),
       url('fonts/CabinetGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Bold';
  src: url('fonts/CabinetGrotesk-Bold.woff2') format('woff2'),
       url('fonts/CabinetGrotesk-Bold.woff') format('woff'),
       url('fonts/CabinetGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Extrabold';
  src: url('fonts/CabinetGrotesk-Extrabold.woff2') format('woff2'),
       url('fonts/CabinetGrotesk-Extrabold.woff') format('woff'),
       url('fonts/CabinetGrotesk-Extrabold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'CabinetGrotesk-Black';
  src: url('fonts/CabinetGrotesk-Black.woff2') format('woff2'),
       url('fonts/CabinetGrotesk-Black.woff') format('woff'),
       url('fonts/CabinetGrotesk-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 900.0;
*
* available axes:
'wght' (range from 100.0 to 900.0
*/
@font-face {
  font-family: 'CabinetGrotesk-Variable';
  src: url('fonts/CabinetGrotesk-Variable.woff2') format('woff2'),
       url('fonts/CabinetGrotesk-Variable.woff') format('woff'),
       url('fonts/CabinetGrotesk-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.content {
  padding: 20px;
  border-radius: 5px;
  border: 2px solid #17192a;
  max-width: 600px;
  width: 100%;
}

.content {
  position: relative;
  background-color: #000000;
  z-index: 0;
  overflow: hidden;
}

.content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(38, 39, 119, 0.3), transparent 70%);
  filter: blur(60px);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: floatXY 20s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes floatXY {
  0% {
    transform: translate(-50%, -50%) translate(0%, 0%);
  }
  15% {
    transform: translate(-50%, -50%) translate(10%, -5%);
  }
  30% {
    transform: translate(-50%, -50%) translate(-8%, 12%);
  }
  45% {
    transform: translate(-50%, -50%) translate(6%, 5%);
  }
  60% {
    transform: translate(-50%, -50%) translate(-12%, -6%);
  }
  75% {
    transform: translate(-50%, -50%) translate(4%, 10%);
  }
  100% {
    transform: translate(-50%, -50%) translate(0%, 0%);
  }
}



/* .content {
  position: relative;
  background-color: #000000;
  z-index: 0;
  overflow: hidden;
}

.content::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(38, 39, 119, 0.3), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  animation: moveGlow 10s linear infinite;
}

@keyframes moveGlow {
  0% {
    top: -30%;
    left: -30%;
  }
  25% {
    top: -30%;
    left: 30%;
  }
  50% {
    top: 30%;
    left: 30%;
  }
  75% {
    top: 30%;
    left: -30%;
  }
  100% {
    top: -30%;
    left: -30%;
  }
} */


.title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
.title img {
  max-width: 13%;
  max-height: 13%;
  vertical-align: middle;
}
.login,.loggedin {
  margin-top: 20px;
}
#password,.input {
  font-family: 'CabinetGrotesk-Regular', sans-serif;
  font-weight: bold;
  border: 0;
  padding: 10px;
  border: 2px solid #17192a;
  background-color: #0d0d19;
  color: white;
}
#password:focus,.input:focus {
  outline: none;
}
.btn-normal {
  background-color: #0d0e19;
  color: white;
  border: 2px solid #17192a;
  padding: 10px 20px;
  cursor: pointer;
  font-family: 'CabinetGrotesk-Regular', sans-serif;
  font-weight: bold;
  transition: 0.5s;
}
.btn-normal:hover {
  background-color: #23233c;
  border: 2px solid #23233c;
  color: white;
  transition: 0.5s;
}

.error {
  margin-top: 10px;
  color: rgb(193, 67, 67);
  font-size: 14px;
}
.logged-description {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 16px;

}

.ja {
  padding: 3px;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 5px;
  background-color: #292c46;
  color: #000000;
  border-radius: 5px;
}

.author {
  cursor: default;
  user-select: none;
}

.footer {
  margin-top: 25px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #282b41;
}

a:visited, a {
  color: white;
}
.link {
  margin-bottom: 10px;
  font-size: 14px;
  color: #3e4470;
  padding-left: 10px;
  border-left: 1px solid #292c46;
}
.history {
  margin-top: 10px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
th,tr,td {
  text-align: left;
  padding: 8px;
}
tr {
  margin: 10px;
}
th {
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
td {
  font-size: 13px;
}

.footer a {
  position: relative;
  font-weight: 500 !important;
  text-decoration: none;
  color: inherit;
}

.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* odległość od tekstu */
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.footer a:hover::after {
  width: 100%;
}

.history-info {
  margin-top: 20px;
  font-size: 12px;
  color: #5c5c5c;
}

.history a {
  text-decoration: none;
}

