
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
    color: #428bca;
    text-decoration: none;
	background: 0 0;
}

#idDb {
	float: left;
	position: relative;
	margin-top: 30px;
}

html {
  background: url(../../../icones/login/background.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  background: transparent;
}

body, input, button {
  font-family: 'Source Sans Pro', sans-serif;
}

.logo {
  /*background: url(../../../icones/login/logo.png) no-repeat;*/
  /*padding: 15px;*/
  /*width: 163px;*/
  /*min-height: 40px;*/
  margin: 20px auto 30px auto;
  font-size: 1.5em;
  font-weight: bold;
}
.login {
  /*padding: 15px;*/
  width: 25%;
  min-height: 340px;
  margin: 14% 20% 0 auto;
  /*background-color:rgba(255, 255, 255, 0.8);*/
  border-radius: 15px;

}
.login .heading {
  text-align: center;
  /*margin-top: 1%;*/
}
.login .heading h2 {
  font-size: 3em;
  font-weight: 300;
  color: #46a5d8;
  display: inline-block;
  padding-bottom: 15px;
}
.login section .input-group {
  border-bottom: 1px solid rgb(0 0 0 / 88%)
  /*border-top: 1px solid rgba(91, 97, 100, 0.2);*/
}
.login section .input-group:last-of-type {
  border-top: none;
}
.login section .input-group span {
  background: transparent;
  min-width: 53px;
  border: none;
}
.login section .input-group span i {
  font-size: 1.5em;
  color: rgba(91, 97, 100, 0.3);
}
.login section input.form-control {
  display: block;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
  border-radius: 0px;
  padding: 10px;
  font-size: 1.4em;
  width: 100%;
  background: transparent;
  color: #46a5d8;
  padding-top: 30px;
}
.login section .login-wrap {
  position: relative;
}
.login section span.login-placeholder {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  top: 30px;
  left: 10px;
  font-size: 1.4em;
  color: #46a5d8;
  opacity: 0.57;
  z-index: -1;
}
.login-input:not(.login-input:placeholder-shown) ~ .login-placeholder::after {
  content: "";
}
.login-placeholder::after {
  content: "E-mail / Identifiant";
}
.login section input.form-control:focus {
  border: none;
}
.login section button {
  margin-top: 90px;
  background: #57a1ea;
  border: none;
  font-size: 1.3em;
  font-weight: 300;
  padding: 20px;
  width: 100%;
  border-radius: 20px;
  color: #fff;
  border-bottom: 4px solid #5b6164;
}
.login section button:hover {
  background: #30a435;
  -webkit-animation: hop 1s;
  animation: hop 1s;
  color: #fff;
  border-bottom: 4px solid #5b6164;
}
.forget {
  clear:left;
  font-size: 0.9em;
  color: #973b44;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-right:10px;
  text-align:right;
  width:100%;
  cursor: pointer;
}
.float {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px transparent;
}

.float:hover, .float:focus, .float:active {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}


.hide {
	display: none;
}

.login-error {
	color: red;
}


.needNewPwd div {
    border: medium none;
    cursor: pointer;
    background: #c60000;
    color: #eee;
    border-radius: 3rem;
    border-bottom: 3px solid #0000;
    padding: 3px;
	box-shadow: 4px 4px 4px #777;
}

.needNewPwd ul {
	background-color: unset;
	margin: 10px;
	text-align: left;
	font-size: 0.7em;
}

