@import url('https://fonts.googleapis.com/css2?family=Arapey&display=swap');

body.login_bg{
  /* background-image: url('../images/background_motif.png'); */
  background-image: url('../images/konokene.png');
  background-size: 200px;
  background-repeat: repeat;
}

.card.card-transparent{
  width: 100%;
  background: rgba(231, 231, 231, 0.8) !important;
}

label {
  display: block;
  position: relative;
  margin: 40px 0px;
}
.label-txt {
  font-family: 'Arapey', serif;
  position: absolute;
  top: -1.1em;
  padding: 10px;
  font-size: 1.2em;
  letter-spacing: 1px;
  color: rgb(120,120,120);
  transition: ease .3s;
}
.input {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  outline: none;
  color: #08aadb;
  background: transparent;
}

.line-box {
  position: relative;
  width: 100%;
  height: 2px;
  background: #BCBCBC;
}

.line {
  position: absolute;
  width: 0%;
  height: 2px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: #08aadb;
  transition: ease .6s;
}

.input:focus + .line-box .line {
  width: 100%;
}

.label-active {
  top: -2em;
  color: #08aadb;
}

button {
  display: inline-block;
  padding: 12px 24px;
  background: rgb(220,220,220);
  font-weight: bold;
  color: rgb(120,120,120);
  border: none;
  outline: none;
  border-radius: 3px;
  cursor: pointer;
  transition: ease .3s;
}

/* button:hover {
  background: #08aadb;
  color: #ffffff;
} */

.line-danger {
  position: absolute;
  width: 0%;
  height: 2px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff2a2a;
  transition: ease .6s;
}

#info-loading{
  display: none;
}

#btn-inline-form{
  position: absolute;
  top: 7px;
  right: 0px;
}

#btn-inline-form2{
  position: absolute;
  top: 7px;
  left: -20px;
}
img.img-full{
  width: 100% !important;
}