body {
  background: #0a1a2e;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  margin: 0;
  position: relative;
 
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg.png");
  background-repeat: repeat;
  background-size: cover;
  opacity: 0.2;
}

img {
  max-width: 100%;
}

.logo a img {
  width: 144px;
}
h1,
h2,
h3,
h4,
h5,
span,
p,
a {
  padding: 0;
  margin: 0;
  font-family: "Play", sans-serif;
}
.code-container {
  background-color: #0006;
  border: 1px solid;
  border-color: #ffffff1a;
  border-radius: 15px;
  padding: 40px 30px 40px 30px;
  position: relative;
}

.code-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  z-index: -1;
  animation: pulse-border 2s infinite ease-in-out;
}

.code-title {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

#code-form {
  width: 100%;
}
#code-form .code-input {
  width: 100%;
  border-radius: 5px;
  border: none;
  padding: 20px 30px 20px 15px;
  font-size: 16px;
}

.btn {
  width: 100%;
  padding: 20px 20px;
  border-radius: 5px;
  background-color: rgb(8, 178, 88);
  border: none;
  margin-top: 10px;
  color: #fff;
  font-family: "Play", sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

.btn:hover {
  background-color: rgb(4, 138, 66);
}
.footer-link-container a {
  color: #848484;
  text-decoration: none;
  padding-left: 30px;
}
.copyright {
  color: #848484;
}
#error-message {
  padding-bottom: 10px;
  color: #e74c3c;
  text-align: left;
  font-weight: bold;
}
.btn-tg {
  background-color: #27a7e7;
  padding: 10px 20px;
  color: #fff;
  margin-top: 10px;
}

.btn-vk {
  background-color: #0077ff;
  padding: 10px 20px;
  color: #fff;
  margin-top: 10px;
}

.police {
  background-color: #0006;
  border: 1px solid;
  border-color: #ffffff1a;
  border-radius: 15px;
  padding: 40px 30px 40px 30px;
  position: relative;
  color: #fff;
  line-height: 30px;
}

.police h1 {
  font-weight: bold;
  margin-bottom: 30px;
}

.police span {
  font-weight: bold;
  margin-bottom: 30px;
  display: block;
  width: 90%;
}

.license {
  background-color: #0006;
  border: 1px solid;
  border-color: #ffffff1a;
  border-radius: 15px;
  padding: 40px 30px 40px 30px;
  position: relative;
  color: #fff;
  line-height: 30px;
}

.license h1  {
  font-weight: bold;
  margin-bottom: 30px;
}

.license span {
  font-weight: bold;
  margin-bottom: 30px;
  display: block;
  width: 90%;
}


@keyframes pulse-border {
  0%,
  100% {
    box-shadow: 0 0 20px 2px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.4);
  }
}
