body {
  padding-top: 60px;
  background-image: url("../img/fond.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

.container{
  padding-top: 60px;
}

.jumbotron{
background-color: rgba(218, 218, 218, 0.9);
}

.login_container{
padding: 50px 20px;
margin: 0 30%;
background-color: white;
border-radius: 10px;

animation-duration: 1s;
animation-name: slideT;
animation-iteration-count: 1;
animation-direction: normal;
}

.login {
  max-width: 330px;
  padding: 8px;
  margin: 0 auto;
}

.login .form-control {
  position: relative;
  height: auto;
  padding: 10px;
  font-size: 16px;
}

.headerR{
  text-align: center;
  animation-duration: 1s;
  animation-name: slideR;
  animation-iteration-count: 1;
  animation-direction: normal;
}

.headerL{
  text-align: center;
  animation-duration: 1s;
  animation-name: slideL;
  animation-iteration-count: 1;
  animation-direction: normal;
}

@keyframes slideR { /* Vers la droite (right) */
  0% { transform: translateX(-30px); opacity: 0;}
  100% { transform: translateX(0px); opacity: 1;}
}

@keyframes slideL { /* Vers la gauche (left) */
  0% { transform: translateX(30px); opacity: 0;}
  100% { transform: translateX(0px); opacity: 1;}
}

@keyframes slideT { /* Vers le haut (top) */
  0% { transform: translateY(20px); opacity: 0; transform:rotate(10deg);}
  100% { transform: translateY(0px); opacity: 1;transform:rotate(0deg);}

}

@keyframes slideD { /* Vers le bas */
  0% { transform: translateY(-20px); opacity: 0;}
  100% { transform: translateY(0px); opacity: 1;}
}

@keyframes zoomIn { /* Zoom (pour le titre) */
  0% {opacity: 0; font-size: 12px;}
  100% {opacity: 1;}
}
@keyframes rot1 {
  0% {transform:rotate(-20deg);}
  100% {transform:rotate(0deg);}
}

.title{
  animation-duration: 1s;
  animation-name: zoomIn;
  animation-iteration-count: 1;
  animation-direction: normal;
}

.login input[type="text"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;

  animation-duration: 1s;
  animation-name: slideR;
  animation-iteration-count: 1;
  animation-direction: normal;

}
.login input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;

  animation-duration: 1s;
  animation-name: slideL;
  animation-iteration-count: 1;
  animation-direction: normal;
}

.login button[type="submit"] {
  animation-duration: 1s;
  animation-name: slideT;
  animation-iteration-count: 1;
  animation-direction: normal;
}
.slideD{
  animation-duration: 1s;
  animation-name: slideD;
  animation-iteration-count: 1;
  animation-direction: normal;
}

@media (min-width: 700px){
  .no-display-pc{
    display: none;
  }
}

@media (max-width: 700px){
  .no-visible-mb{
    visibility: hidden;
  }
  .no-display-mb{
    display: none;
  }
  .no-margin-mb{
    margin-right: 0;
    margin-left: 0;
  }
  .no-margin-all-mb{
    margin: 0;
  }
  .no-padding-all-mb{
    padding: 0;
  }
  .visible-mb{
    visibility: visible;
  }

}
