
.login-content {
	max-width: 450px;
    width: 100%;
    height: 550px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -200px;
	margin-top: -286px;
	border-radius: 8px;
}

.logo {
	width: 128px;
	height: 128px;
	margin: 5px;
}

.text-logo {
	text-align: center;
	font-weight: bold;
	font-size: 32px;
}


.nomember {
	background-color: #e4dede;
	padding: 10px;
	padding-top: 20px;
	border-radius: 0px 0px 5px 5px;
}

.nomember a{
	text-decoration: none;
}

.forgot {
	
}



.copyright {
	color: white;
	padding: 15px;
}

/*support google chrome*/
.form-control::-webkit-input-placeholder{
	color: #00000036;
}

/*support mozilla*/
.form-control:-moz-input-placeholder{
	color: red;
}

/*support internet explorer*/
.form-control:-ms-input-placeholder{
	color: red;
}
/* BOTON DE LOGIN*/
.btnLOG {
  width: 6.5em;
  height: 2.3em;
  margin: 0.5em;
  background: black;
  color: white;
  border: none;
  border-radius: 0.625em;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
 }
 
 .btnLOG:hover {
  color: black;
 }
 
 .btnLOG:after {
  content: "";
  background: white;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
 }
 
 .btnLOG:hover:after {
  transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
 }