@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
.cb-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(153, 153, 153, 0.95);
  color: #FFFFFF;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .cb-banner {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
}
.cb-banner.cb-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cb-banner__text {
  flex: 1;
  min-width: 300px;
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
}
.cb-banner__text a {
  color: #FFFFFF;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-weight: bold;
}
.cb-banner__text a:hover {
  text-decoration: none;
  color: white;
}
@media (max-width: 768px) {
  .cb-banner__text {
    min-width: auto;
    margin-bottom: 12px;
    padding: 8px 0;
    font-size: 13px;
  }
}

.cb-banner__button {
  background: #FF0014;
  color: #FFFFFF;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  margin: 5px;
  min-width: 120px;
  font-family: inherit;
}
.cb-banner__button:hover {
  background: #ff3343;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.cb-banner__button:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .cb-banner__button {
    min-width: 140px;
    padding: 10px 20px;
    font-size: 13px;
  }
}

@keyframes cb-slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes cb-slideOutDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
.cb-banner {
  animation: cb-slideInUp 0.5s ease forwards;
}
.cb-banner.cb-hidden {
  animation: cb-slideOutDown 0.5s ease forwards;
}

.cb-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

#preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background: #000 url("../img/loading.gif") no-repeat center center;
  opacity: 1;
  transition: all 1s linear;
}

.cp {
  cursor: pointer;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}
body::before, body::after {
  content: "";
  position: fixed;
  inset: 0;
}
body::before {
  background: url("../img/background-first.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
body::after {
  background: url("../img/background-second.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 0.5s;
}
body > img {
  z-index: 1000;
  margin: 30px;
  width: 150px;
  height: 150px;
}

body.signup::after {
  opacity: 1;
}
body.signup .forms_container span::before {
  background: url("../img/background-second.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
body.signup .forms_container::before {
  background: repeating-conic-gradient(from var(--a), #FF0014 0%, #FF0014 10%, transparent 10%, transparent 80%, #FF0014 100%);
  content: "";
}
body.signup form#signinForm {
  left: -100%;
}
body.signup form#signupForm {
  left: 0;
}

@property --a {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes animate {
  0% {
    --a: 0deg;
  }
  100% {
    --a: 360deg;
  }
}
.forms_container {
  position: relative;
  width: 350px;
  height: 340px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
}
.forms_container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-conic-gradient(from var(--a), #FF0014 0%, #FF0014 10%, transparent 10%, transparent 80%, #FF0014 100%);
  border-radius: 20px;
  animation: animate 2.5s linear infinite;
}
.forms_container .blur {
  position: absolute;
  inset: 5px;
  overflow: hidden;
  border-radius: 15px;
}
.forms_container .blur::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: url("../img/background-first.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  filter: blur(15px);
}
.forms_container form {
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  transition: 0.5s;
}
.forms_container form#signupForm {
  left: 100%;
}
.forms_container form h2 {
  position: relative;
  color: #FFF;
  font-size: 1.3em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}
.forms_container form .inputBox {
  position: relative;
  width: 70%;
  display: flex;
  justify-content: space-between;
}
.forms_container form .inputBox.password.noshowpass svg.sym-eye-closed {
  display: none;
}
.forms_container form .inputBox.password.showpass svg.sym-eye {
  display: none;
}
.forms_container form .inputBox svg {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  width: 25px;
  height: 25px;
  right: 8px;
  top: 4px;
}
.forms_container form .inputBox svg:hover {
  cursor: pointer;
}
.forms_container form .inputBox span, .forms_container form .inputBox p {
  color: #FFF;
  font-size: 0.85em;
}
.forms_container form .inputBox b {
  font-weight: 500;
  text-decoration: underline;
}
.forms_container form .inputBox span {
  text-decoration: underline;
}
.forms_container form .inputBox input {
  width: 100%;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.15);
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 0.85em;
  color: #FFF;
}
.forms_container form .inputBox input.cp:disabled, .forms_container form .inputBox input#sendcode.cp:disabled {
  background-color: #ded6d6;
  cursor: default;
}
.forms_container form .inputBox input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.forms_container form .inputBox input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.forms_container form .inputBox input[type=submit] {
  background: rgb(233, 5, 36);
  font-weight: 500;
}
.forms_container form .inputBox input#sendcode {
  background: #FF0014;
  font-weight: 500;
}

.forms_container form .inputBox.has-errors input {
  border-color: #f96641;
}/*# sourceMappingURL=style4.css.map */