body {
  background-color: #313131;
  color: #ffdb5c;
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

input, select, button, label, p, .not-found {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

form {
  max-width: 600px;
  margin: 10px auto;
  padding: 20px;
  background-color: #1C1C1C;
  border-radius: 18px;
}
input, select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #434343;
  background-color: #282828;
  color: #fff;
  box-sizing: border-box;
}
input::placeholder {
  color: #cacaca;
}

.kaos {
  display: block;
  margin: 10px auto;
  padding: 5px 10px;
  text-align: center;
  max-width: 407px;
}

.kaos-image {
  width: 100%;
  height: auto;
}

button {
  width: 100%;
  padding: 10px;
  background: linear-gradient(270deg, #fdce4a, #e8b116);
  background-size: 200% 200%;
  color: black;
  border: none;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  transition: background-position 0.5s ease, color 0.3s;
  animation: gradientBackground 5s linear infinite, pulse 1.5s infinite;
}

button:hover {
  background-position: 100% 0;
  color: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

#progressBarContainer {
  width: 100%;
  background-color: #444;
  border-radius: 5px;
  margin-top: 10px;
}

.not-found {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    color: black;
    z-index: 9999999999;
    text-align: center;
    padding-top: 20%;
    font-size: 30px;
}

@media (min-width: 768px) {
    .not-found {
        display: block;
    }

    html, body {
        overflow: hidden;
    }
}