/* ---------- GENERAL ---------- */
* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

html{
  min-height: 100%;
  min-width: 100%;

}

body {
  background: #57859b;
  background: -moz-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(25,25,25,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,1)), color-stop(100%, rgba(25,25,25,1)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(25,25,25,1) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(25,25,25,1) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,1) 0%, rgba(25,25,25,1) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(25,25,25,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#fff', GradientType=0 );
  display: block;
  position: relative;
  height: 100%;
  color: #999;
  font: 400 16px/1.5em sans-serif;
  margin: 0;
  height: 100vh;
}
body::after{
  content: "";
  background: url("/assets/images/backend-background.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1; 
}
h3 {
  margin: 0;
}

h4{
  color: #fff;
  text-align: center;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #fff;
  text-decoration: underline;
}
fieldset {
  border: none;
  margin: 0;
}

form {
	margin:0px;
}

input {
  color:#282830;
  border: none;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  margin-top: 2px;
  -webkit-appearance: none;
  
}
input:-webkit-autofill{
	 -webkit-box-shadow: 0 0 0px 1000px white inset;
}

input:focus {
  outline: none;
}

input[type="submit"] {
  cursor: pointer;
}

ul {
	list-style-type: none;
	padding:0;
	margin:0;
}

.clearfix {
  *zoom: 1;
  padding:10px 0px;
}
.clearfix:before, .clearfix:after {
  content: ' ';
  display: block;
}
.clearfix:after {
  clear: both;
}

@media screen and (min-height: 500px) and (min-width: 400px) {
	.container {
	  left: 50%;
	  position: fixed;
	  top: 50%;
	  -webkit-transform: translate(-50%, -50%);
	          transform: translate(-50%, -50%);
	}
}


/* ---------- formulario ---------- */
#formulario-login {
  width: 345px;
  margin: 15px auto;
  max-width: 100%;
}

#formulario-login h3 {
  color: #fff;
  font-size: 25px;
  padding: 20px;
  text-align: center;
}

#formulario-login fieldset {
  padding: 20px;
  position: relative;
}



#formulario-login input {
  font-size: 14px;
  border-radius: 0;
}

#formulario-login input[type="email"],
#formulario-login input[type="password"],
#formulario-login input[type="text"] {
  padding: 12px 10px;
  width: 99%;
  background-color: #fff;
  border-bottom: 1px #fff solid;
  color: #b17f98;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #b17f98;
}

#formulario-login .olvide-contrasena{
  color: #fff;
  font-size:13px;
  
}

.text-center{
  text-align: center;
}

#formulario-login .olvide-contrasena:hover{
  color: #fff;
  text-decoration: underline;

}

#formulario-login .div-submit{
  text-align: center;
}

#formulario-login input[type="submit"] {
  background-color: transparent;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid #fff;
}

#formulario-login input[type="submit"]:hover {
  background: #d50475;
}

#formulario-login input[type="button"] {
  background: #084581;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
  margin-top: 20px;
  padding: 12px 20px;
  cursor:pointer;
}

#formulario-login input[type="button"]:hover {
  background: #d50475;
}

#formulario-login footer {
  font-size: 12px;
  margin-top: 16px;
}

.info {
  background: #e5e5e5;
  border-radius: 0;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  margin: 0 10px 0 0;
  text-align: center;
  width: 20px;
}
#mensaje {
	color:#BE0102;
	width:50%;
	float:left;
	margin:0;
	padding-top:15px;
}
#div-mensaje-inferior {
	background-color: #7CC464;
	border-radius: 0;
	text-align: center;
	width:345px;
	transition:opacity 1s;
}
#mensaje-inferior {
	padding:10px;
	color:white;
}

.etiqueta {
	margin: 10 0 0 5;
	font-size:13px;
}

@media screen and (min-height: 500px) and (min-width: 400px) {
	#formulario-login {
		margin: 0 auto;
	}
}

#login-control label{
  color: #fff;
  margin-top: 10px;
}