@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
}

body {
	margin: 0px;
	font-family: "Lucida Sans", sans-serif;
}

.loading_screen {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  z-index: 3000;
  font-size: 36px;
  text-align: center;
}

.text_loading_screen {
  font-size: 18px;
  color: #b01862;
}

#contenido_login {
	z-index:-1;
	position:fixed;
	top:0;
	left:0;
	height:100%;
	width:100%;
	overflow:hidden;
	background-image: url("../images/bg_login_d.jpg");
	background-size:cover;
	background-position: right;
}

#form_login {
	position: absolute;
	left: 50%;
	top: 50%;
	background-color: rgba(255,255,255,0.9);
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);	
	border-radius: 7px;
	-moz-border-radius: 7px; 
	-webkit-border-radius: 7px;
	font-size: 14px;
	padding: 10px;
	min-width: 320px;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 30px 5px rgba(0,0,0,0.5);
}

form {
	text-align: left;
}
form a {
	font-size: 12px;
	text-decoration: none;
	color: #283891;
}

input[type=text], input[type=password] {
	width: 100%;
	padding: 0px 5px 2px;
	font-size: 18px;
	font-family: "Lucida Sans", sans-serif;
	border: none;
	border-bottom: 2px solid #283891;
	margin: 3px 0px 15px;
	background-color: transparent;
	outline: 0px;
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
 	transition: all 5000s ease-in-out 0s;
}

#button_summit {
	width: 100%;
	font-size: 18px;
	font-family: "Lucida Sans", sans-serif;
	background-color:#ef3e36; 
  	border: none;
	color: white;
	border-radius: 3px;
	-moz-border-radius: 3px; 
	-webkit-border-radius: 3px; 
	padding: 8px 0px; 
	text-decoration: none;
	margin: 30px 0px 0px;
  cursor: pointer;
}

#button_summit:hover {
	background-color:#ab0e07;
}

.white_font {
	color: white;
}

#error_container {
	width: 100%;
	height: 35px;
	margin: 0px 0px 12px 0px;
}
#msg_error {
	width: 100%;
	border-radius: 5px;
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
	background-color: #FFCDCE;
	border: 1px solid #B90003;
	color: #B90003;
	padding: 9px;
  display: none;
}

#icono-oops {
  text-align: center;
  color: #b01862;
  font-size: 60px;
  padding: 45px;
}

#texto-oops {
  font-size: 20px;
  text-align: center;
  color: #b01862;
  font-style: italic;
}

#titulo_login {
  font-size: 24px;
  text-align: center;
  color: #283891;
  font-weight: bold;
  padding-top: 20px;
}

@media only screen and (min-width: 1024px) {
  #contenido_login {
    background-image: url(../images/bg_login_d.jpg);
  }
  
  #titulo_login {
    font-size: 30px;
  }
}