﻿

body{
	margin: 0;
	padding: 0;
	background: #fff;

	color: #fff;
	font-family: Arial;
	font-size: 12px;
    overflow:hidden;
}

.body{
	position: absolute;
	top: -500px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background-image: url('/Images/FondoLoginClinica.jpg');
	background-size: cover;	
	z-index: 0;
    overflow:hidden;
}

.grad{
	position: absolute;
	top: -20px;
	left: -20px;
	right: -40px;
	bottom: -40px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 1;	
    -khtml-opacity:.4; 
    -moz-opacity:.4; 
    -ms-filter:"alpha(opacity=40)";
    filter:alpha(opacity=40);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.4);
    opacity:.4; 
}

.header{
	position: absolute;
	top: calc(50% - 35px);
	left: calc(50% - 255px);
	z-index: 2;
}
.logo{
	position: absolute;
	top: calc(50% - 75px);
	left: calc(50% - 275px);
	z-index: 2;
}
.loginConteiner{
	position: absolute;
	top: calc(50% - 90px);
	left: calc(50% - 285px);
	z-index: 2;
    height: 210px;
	width: 500px;
    background-color:#0071DD;
    opacity:0.6;
    border-radius:5px;

}

.header div{
	float: left;
	color: #0071DD;
	font-family: 'Exo', sans-serif;
	font-size: 35px;
	font-weight:bold;
}

.header div span{
	color: #0071DD !important;
}

.login{
	position: absolute;
	top: calc(50% - 75px);
	left: calc(50% - 100px);
	height: 170px;
	width: 350px;
	padding: 10px;
	z-index: 2;
}

.login input[type=text]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(236,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
}

.login input[type=password]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	
}

.login button{
	width: 260px;
	height: 35px;
	background: #0071DD;
    opacity: 0.9;
	border: 1px solid #0071DD;
	cursor: pointer;
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
}

.login button:hover{
	opacity: 0.8;
}

.login button:active{
	opacity: 0.6;
}

.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login button:focus{
	outline: none;
}

::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}