/* Page de connexion */
/* 2020 */

body {
  background: #2b2b2b;
  font-family: Lato;
  margin: 0;
  padding: 0;
}

.ctn_noscript {
  background: #990000;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}

.ctt_noscript {
  bottom: 0;
  height: 150px;
  left: 0;
  margin: auto;
  max-width: 300px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 95%;
}

.ctn_noscript img {
  height: 60px;
  margin: 20px 0;
}

.ctn_noscript p {
  color: #ffffff;
  font-size: 14px;
}

@keyframes gradient_anim {
  0% {
    filter: hue-rotate(0deg);
  }

  25% {
    filter: hue-rotate(180deg);
  }

  50% {
    filter: hue-rotate(0deg);
  }

  75% {
    filter: hue-rotate(-180deg);
  }

  100% {
    filter: hue-rotate(0deg);
  }
}

.gradient_anim {
  animation-duration: 350s;
  animation-iteration-count: infinite;
  animation-name: gradient_anim;
  animation-timing-function: linear;
  background: -moz-linear-gradient(30deg, #ff0000 0%, #9e005d 100%);
  background: -webkit-gradient(
    linear,
    left bottom,
    right top,
    color-stop(0%, #ff0000),
    color-stop(100%, #9e005d)
  );
  background: -webkit-linear-gradient(30deg, #ff0000 0%, #9e005d 100%);
  background: -o-linear-gradient(30deg, #ff0000 0%, #9e005d 100%);
  background: -ms-linear-gradient(30deg, #ff0000 0%, #9e005d 100%);
  background: linear-gradient(60deg, #ff0000 0%, #9e005d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#9E005D',GradientType=1 );
  filter: blur(50px);
  height: 100%;
  left: 0;
  opacity: 0.25;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

.frame_form {
  bottom: 0;
  height: 570px;
  left: 0;
  margin: auto;
  max-width: 400px;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 95%;
  transition: ease 0.5s;
}

.frame_form.up {
  opacity: 0;
  transform: translateY(-50px);
}

.logo {
  display: block;
  height: 80px;
  max-width: 90%;
  left: 0;
  margin: 50px auto;
  right: 0;
}

label {
  color: #ffffff;
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin: 20px 0 4px;
  text-transform: uppercase;
}

input[type="text"],
input[type="mail"],
input[type="password"] {
  background: transparent;
  border-radius: 3px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 26px;
  outline: none;
  margin: 5px 0 25px;
  padding: 5px;
  transition: all cubic-bezier(0.3, 0.1, 0.33, 1) 0.5s;
  width: calc(100% - 12px);
}

button {
  background: #ffffff;
  border-radius: 3px;
  border: none;
  display: block;
  font-size: 16px;
  margin: 35px auto 20px;
  padding: 7px;
  width: 50%;
}

.error {
  background: #990000;
  border-radius: 3px;
  color: #eee;
  font-size: 16px;
  opacity: 0;
  padding: 8px 0;
  text-align: center;
  transform: translateY(-20px);
  transition: ease 0.5s;
}

.error.active {
  opacity: 1;
  transform: translateY(0px);
}

.forget_password {
  color: #dddddd;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
}

.ctt_password {
  height: 100px;
  opacity: 1;
  overflow: hidden;
  transition: ease 0.5s;
}

.ctt_password.hide {
  height: 0;
  opacity: 0;
}
