﻿/*
Celeste Claro:
rgb(130,215,225)
#82D7E1

Celeste Claro a Base:
rgb(70,190,215)
#46BED7

Celeste Base:
rgb(5,170,200)
#05AAC8

Celeste Base a Obscuro:
rgb(5,125,150)
#057D96

Celeste Obscuro:
rgb(5,85,100)
#055564

Gris Filete:
rgb(204,204,204)
#CCCCCC

Amarillo Claro:
rgb(255,195,55)
#FFC337

Amarillo Claro Shadowed:
rgb(190,145,40)
#BE9128

Amarillo Obscuro:
rgb(255,155,55)
#FF9B37

Amarillo Obscuro Shadowed:
rgb(190,115,40)
#BE7328
*/

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid green;
  -webkit-text-fill-color: green;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}

body {
	background: url("imagenes/backgroundlogin.jpg") no-repeat fixed center center;
	background-size: cover;
}

::-webkit-input-placeholder {
	color: rgb(0,0,0);
}

:-moz-placeholder { /* Firefox 18- */
	color: rgb(0,0,0);
}

::-moz-placeholder {  /* Firefox 19+ */
	color: rgb(0,0,0);
}

:-ms-input-placeholder {
	color: rgb(0,0,0);
}

#container {
	background: rgba(255,255,255,.75);
	border-radius: 1em;
	padding: .5em;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
}

.login-block {
	width: 320px;
	padding: 20px;
	background: rgba(5,170,200,0.75);
	border-radius: 0.5em;
	margin: 0 auto;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
}

.login-block h1 {
	font-family: "opensans_semi_bold";
	text-align: center;
	color: rgb(5,85,100);
	font-size: 3rem;
	margin-top: 0;
	margin-bottom: 0.8em;
}

.login-block input {
	width: 100%;
	height: 4rem;
	box-sizing: border-box;
	border-radius: 0.25em;
	border: 1px solid rgb(204,204,204);
	margin-bottom: 1.5rem;
	font-family: "opensans_regular";
	font-size: 1.8rem;
	color: rgb(5,170,200);
	padding: 0 20px 0 50px;
	outline: none;
}

.login-block input#Usuario {
	background: rgb(255,255,255) url("imagenes/loginicons.png") 10px -22px no-repeat;
}

.login-block input#Usuario:focus {
	background: rgb(255,255,255) url("imagenes/loginicons.png") 10px -102px no-repeat;
}

.login-block input#Password {
	background: rgb(255,255,255) url("imagenes/loginicons.png") 10px -182px no-repeat;
}

.login-block input#Password:focus {
	background: rgb(255,255,255) url("imagenes/loginicons.png") 10px -262px no-repeat;
}

.login-block input:active, .login-block input:focus {
	border: 1px solid rgb(5,170,200);
}

.login-block #btnIngresar {
	font-family: "opensans_semi_bold";
	width: 100%;
	box-sizing: border-box;
	border: 1px solid rgb(5,125,150);
	color: rgb(255,255,255);
	text-transform: uppercase;
	outline: none;
	cursor: pointer;
	padding: 0;
	background: rgb(5,170,200); /* Old browsers */
	background: -moz-linear-gradient(top, rgb(5,170,200) 0%, rgb(5,85,100) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgb(5,170,200) 0%, rgb(5,85,100) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgb(5,170,200) 0%, rgb(5,85,100) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#05AAC8", endColorstr="#055564", GradientType=0 ); /* IE6-9 */
}

.login-block #btnIngresar:hover {
	color: rgb(5,170,200);
	border: 1px solid rgb(255,155,55);
	background: rgb(255,195,55); /* Old browsers */
	background: -moz-linear-gradient(top, rgb(255,195,55) 0%, rgb(255,155,55) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgb(255,195,55) 0%, rgb(255,155,55) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgb(255,195,55) 0%, rgb(255,155,55) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#FFC337", endColorstr="#FF9B37", GradientType=0 ); /* IE6-9 */
}

.login-block #btnIngresar:active, .login-block #btnIngresar.active {
	color: rgb(5,85,100);
	border: 1px solid rgb(190,115,40);
	background: rgb(255,195,55); /* Old browsers */
	background: -moz-linear-gradient(top, rgb(190,145,40) 0%, rgb(190,115,40) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgb(190,145,40) 0%, rgb(190,115,40) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgb(190,145,40) 0%, rgb(190,115,40) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#BE9128", endColorstr="#BE7328", GradientType=0 ); /* IE6-9 */
	-moz-box-shadow: inset 0 0 10px rgb(0,0,0);
	-webkit-box-shadow: inset 0 0 10px rgb(0,0,0);
	box-shadow: inset 0 0 10px rgb(0,0,0);
}