body {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,#4041e9,#8d30ae,#ca247a,#ea235e,#f43b40,#fe8826);
    background-size: 150% 150%;
    animation: gradient-animation 30s ease infinite;
    font-family: 'Roboto', sans-serif;
    background-color: black;
    overflow: hidden;
}

@keyframes gradient-animation {
  0% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 50% 50%;
  }
}

.container {
    position: absolute;
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    vertical-align: middle;
}

.title {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    font-size: 25px;
    color: white;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.input-box {

}

.login-box {
  text-align: center;
}

.textbox {
    display: flex;
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    padding: 12px 0;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
}
 
.fa {
    height: auto;
    width: auto;
    margin: 5px;
    float: left;
    text-align: center;
    margin-left: 15px;
    vertical-align: middle;
}
 
.textbox input {
    border: none;
    outline: none;
    background: none;
    font-size: 18px;
    float: left;
    margin: 0 5px;
    width: 75%;
    vertical-align: middle;
}
 
.button {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    margin: auto;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid black;
    margin-top: 10px;
    margin-bottom: 10px;
    color: black;
}

#logo.fa-brands {
  font-size: 120px;
  color: white;
  margin-bottom: 25px;
}

.logo {
  text-align: center;
  width: 350px;
  height: auto;
  margin-bottom: 80px;
}

.qr-box {
  position: absolute;
  width: 250px;
  height: 250px;
  right: 5%;
  bottom: 5%;
}

.qr-code {
  width: 250px;
  height: 250px;
}

.footer {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  color: white;
  margin-top: 80px;
  text-transform: uppercase;
}

.alert-box {
  position: absolute;
  width: 50%;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 20px;
}

.alert-box-title {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}

.alert-box-description {
  font-size: 18px;
  margin-bottom: 25px;
}

.alert-box-button {
  width: auto;
  font-size: 18px;
  font-weight: 600;
  background-color: black;
  padding: 15px;
  color: white;
  text-align: center;
  border-radius: 12px;
  text-decoration: none;
}

td {
  border-radius: 1vh;
  padding: 1vh;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 1vh;
  text-align: center;
}

tr {
  border-radius: 1vh;
  margin: 1vh;
}

th {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 1vh;
  padding: 1vh;
}

table {
  width: calc(100% - 2vh);
  border-spacing: 0.5vh;
}

.button-admin {
  padding: 12px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  cursor: pointer;
  margin: auto;
  border-radius: 1vh;
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid white;
  margin-top: 10px;
  margin-bottom: 10px;
  color: white;
}

h1 {
  color: white;
}

h2 {
  color: white;
}

label {
  padding: 1vh;
}

input {
  padding: 1vh;
  margin: 1vh;
  border-radius: 1vh;
  border: none;
}

select {
  padding: 1vh;
  margin: 1vh;
  border-radius: 1vh;
  border: none;
}

.button-filtr {
  padding: 1vh;
  margin: 1vh;
  border-radius: 1vh;
  border: none;
}

.admin {
  height: 100%;
  width: 100%;
  background-color: #00f365;
}

.admin-menu {
  display: inline-block;
  width: 25vh;
  height: 25vh;
  background-color: #1d1d1b;
}

.admin-content {
  display: inline-block;
  width: auto;
  background-color: red;
}