:root {
  --main-red: #DA0B3E;
  --warning-color: #FADE24;
}

.full-page {
  width: 100vw;
  min-height: 100vh;
  background-size: cover;
}

.home-page {
  background-image: url(../img/background/home.png);
}

.signin-page {
  background-image: url(../img/background/signin.png);
  background-color: #010812;
}

.signup-page {
  background-image: url(../img/background/signup.jpg);
}

.forgotpassword-page {
  background-image: url(../img/background/forgot-password.jpg);
}

.signin-form {
  margin: 100px auto;
  max-width: 400px;
  /* background-color: rgba(255, 255, 255, 0.3); */
  border: 1px solid var(--warning-color);
  padding: 30px;
}

.signin-form .form-control,
.signin-form .input-group-text {
  background-color: transparent;
  border: none;
  color: var(--warning-color)!important;
  border-bottom-color: var(--warning-color)!important;
}

.signin-form .form-control:focus {
  outline: 0;
  box-shadow: none;
}

.signin-form .input-icon {
  width: 20px;
  height: 20px;
  color: var(--warning-color)!important;
  border-bottom-color: var(--warning-color)!important;
}

.auth-logo {
  max-width: 100px;
  max-height: 85px;
}

.mainRed {
  color: var(--main-red);
}

.boxTrans {
  position: relative;
}

.trans-img {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  animation: livertrans 40s;
  animation-iteration-count: infinite
}

.trans-img img {
  width: 300px;
  height: auto;
}

.fs-10 {
  font-size: 10px!important;
}

.fs-11 {
  font-size: 11px!important;
}

.fs-12 {
  font-size: 12px!important;
}

.fs-13 {
  font-size: 13px!important;
}

.fs-14 {
  font-size: 14px!important;
}

.fs-15 {
  font-size: 15px!important;
}

.fs-16 {
  font-size: 16px!important;
}

.fs-17 {
  font-size: 17px!important;
}

.fs-18 {
  font-size: 18px!important;
}

.fs-19 {
  font-size: 19px!important;
}

.fs-20 {
  font-size: 20px!important;
}

.fs-25 {
  font-size: 25px!important;
}

@keyframes livertrans {
  0% {
    top: 20%;
    left: 20%;
  }
  15% {
    top: 30%;
    left: 30%;
    transform: rotate3d(5, 7, 20, 45deg);
  }
  30% {
    top: 30px;
    left: 60%;
    transform: rotate3d(50, 30, 100, 80deg);
  }
  50% {
    top: 80%;
    left: 60%;
  }
  70% {
    top: 80%;
    left: 0;
  }
  100% {
    top: 20%;
    left: 20%;
  }
}