/* Global ----------------------------------------------------------------------------------------------------------- */
html,body {
  width: 100%;
  height: 100%;
  background: #f1f1f1;
  overflow: hidden;

  color: #6d6d6d;
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
}
/* Fin global ------------------------------------------------------------------------------------------------------- */

/* Connexion -------------------------------------------------------------------------------------------------------- */
.connexion {
  position: relative;
  background: #f1f1f1; 
}
  .connexion_panel {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 100%;
  }
    .connexion_panel_center {
      margin: 0 auto;
      width: 500px;
      height: 422px;
      background: #fff;
    } 

      .connexion_panel_content {
        width: 312px; 
      }
        .connexion_panel_content .titre {
          text-align: center;
        }

        .connexion_panel_content .titre img {
          width: 100px;
          margin-top: -17px;
        }

        .connexion_panel_content h1 {
          margin-top: 19px;
          font-weight: 100;
          color: #488bcd;
          text-transform: uppercase;
          font-size: 36px;
        }

        .connexion_panel_content input[type="email"], .connexion_panel_content input[type="password"] {
          width: 300px;
          padding: 4px;
          outline: none;

          border: 0;
          border-bottom: 1px solid #808080;
          background: #fff;

          color: #7f7f7f;
          font-size: 14px;
        }
        
        .connexion_panel_content input[type="submit"] {
          width: 100%;
          padding: 10px;
          cursor: pointer;
          
          border: 4px solid #488bcd;
          border-radius: 6px;
          background: #488bcd;

          color: #93c9fd;
          font-family: 'Roboto', sans-serif;
          font-weight: 100;
          font-size: 26px;
          text-transform: uppercase;
          text-align: center;
        }

          .connexion_panel_content input[type="submit"]:hover {

              border: 4px solid #93c9fd;
              background: #fff;

          }

.login_error, .recuperation_error {
  padding: 5px 0;

  text-align: center;
  color: #e2001a;
}

.recuperation_error, .recuperation_ok {
  display: none;
}

.recuperer_mot_de_passe {
  width: 100%;
  text-align: right;
}

  .recuperer_mot_de_passe a {
    display: inline;
    margin: 0;
    padding: 0;
    cursor: pointer;

    border:0;
    background: 0;

    font-size: 12px;
    color: #cbcbcb;
  }

.recovery {
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
}

.ie {
  display: none;
  font-size: 16px;
  text-align: center;
  margin: 20px 0 0 0;
}
/* ------------------------------------------------------------------------------------------------------------------ */

@media (max-width: 768px) {
  .connexion_panel_content { margin-left: 0; }
  .connexion_panel_center.entite_1 { background-image: none; }
  .connexion { display: block; width: 320px; margin: 20px auto; }
}


@media (min-width: 768px) {
  .connexion_panel_content { margin-left: 100px; }
  .connexion_panel_center.entite_1 { background: url(../../entite_2_theme/connexion.png) no-repeat; }
  .connexion { display: table; width: 100%; height: 100% }
}