html {
  height: 100%;
}

body {
  background-color: #021929;
  background-image: linear-gradient(180deg, #e2e8eb 0%, #021929 100%);

  height: 100vh;
  padding: 0;
}

.bg-light {
  background-color: #f8f9fa00 !important;
}

.card-body {
  background-color: #424f7800 !important;
  padding: 0 !important;
}

::placeholder {
  color: white !important;
}

.logo {
  width: 100px;
  height: 60px;
  background-color: white;
  color: #424f78;
  text-align: center;
  font-size: 80px;
  line-height: 60px;
}
.card-body {
  background-color: #424f78;
}
.form-control {
  background-color: transparent;
  border-color: transparent;
  color: white;
}
.border {
  border-radius: 5px;
}
.input-group {
  background-color: transparent;
  color: white;
}
.card-header {
  background-color: transparent;
  border-bottom: none;
  color: white;
  font-size: xx-large;
  font-weight: 600;
  padding: 0 !important;
  text-align: center;
}
.card-bottom {
  background-color: transparent;
  border-bottom: none;
  color: white;
  font-size: small;
  font-weight: 400;
  padding-bottom: 1rem;
  vertical-align: bottom;
}
.btn-forgotten {
  background-color: transparent;
  border-color: transparent;
  color: white;
  text-decoration: underline;
}
.btn-forgotten:hover {
  color: #e27027;
}

.btnIdt {
  padding-top: 2.5rem;
}

.btn {
  background-color: white;
  border-color: white;
  border-radius: 20px;
  color: #424f78;
  transition: none;
  font-size: large;
  font-weight: 600;
}
.btn:hover {
  background-color: #e27027;
  border-color: #e27027;
}
.condition {
  color: #e27027;
  display: flex;
}
#inputTermsAccepted {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.5rem;
}
.fal {
  width: 12px;
  color: white;
}
.alert {
  margin-top: 2rem !important;
  text-align: center;
  font-size: x-large;
  color: #df7789;
  border-radius: 10px;
  border-color: #df7789;
}
.espace {
  font-family: "Orbitron";
  font-size: 30px;
}

.animation_shake {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 1s;
  height: 40vh;
  width: auto;
  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    transform: translate(2px, -2px) rotate(-2deg);
  }
  20% {
    transform: translate(4px, -4px) rotate(-4deg);
  }
  30% {
    transform: translate(6px, -6px) rotate(-6deg);
  }
  40% {
    transform: translate(3px, -3px) rotate(-3deg);
  }
  50% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  60% {
    transform: translate(-2px, -2px) rotate(2deg);
  }
  70% {
    transform: translate(-4px, -4px) rotate(4deg);
  }
  80% {
    transform: translate(-6px, -6px) rotate(6deg);
  }
  90% {
    transform: translate(-3px, -3px) rotate(3deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shake_line {
  0% {
    transform: translate(50%) rotate(0deg);
  }
  10% {
    transform: translate(50%) rotate(-2deg);
  }
  20% {
    transform: translate(50%) rotate(-4deg);
  }
  30% {
    transform: translate(50%) rotate(-6deg);
  }
  40% {
    transform: translate(50%) rotate(-3deg);
  }
  50% {
    transform: translate(50%) rotate(0deg);
  }
  60% {
    transform: translate(50%) rotate(2deg);
  }
  70% {
    transform: translate(50%) rotate(4deg);
  }
  80% {
    transform: translate(50%) rotate(6deg);
  }
  90% {
    transform: translate(50%) rotate(3deg);
  }
  100% {
    transform: translate(50%) rotate(0deg);
  }
}
