@charset "utf-8";
*{
	box-sizing: border-box;
	}

body{
	background:url(../images/slider/20.jpg);
	background-size:cover;
	background-position:center center;
	min-height: 100vh;
	width:100%;
	background-repeat: no-repeat;
    background-attachment: fixed;
	overflow:hidden;
	font-family:sans-serif;
	}

form {
	margin: auto;
	width: 50%;
	max-width: 500px;
	background: rgba(255,255,255,.5);
	padding: 4em 5em;
	border: none;
	border-radius:1px;
	display:block;
	min-height: 10vh;
	margin-top:80px;
	}
h1{
	text-align: center;
	margin-bottom: 50px;
	margin-top: -50px;
	color: #000000;
	font-family: sans-serif;
	font-size: 22px;
	width: 100%;
	float: none;
	}
p{
	text-align: center;
	display:block;
	margin-bottom: 0px;
	color: rgba(0,0,0,.9);
	font-family: sans-serif;
	font-weight:bold;
	}
p a{
	color: rgba(0,0,0,.9);
	text-decoration:none;
}
p a:hover {
    color: white;
	text-decoration:none;
}
.msg-warning{
	color:rgba(204,0,0,1);
	font-size:14px;
}
input{
	padding: 0 1em;
	width: 100%;
	text-align:left;
	margin-bottom: 1em;
	font-size: 20px;
	display:block;
	color:#FFF;
	border: 0px solid #000000;
    border-bottom-width: 1px;
    background-color: transparent;
	line-height:2.5;

	}
input[type="text"]:focus{
	background-color:rgba(0,0,0,.1);
	border:0 0 0 0;
		}
input[type="password"]:focus{
	background-color:rgba(0,0,0,.1);
	}
input[type="submit"]{
	background: #39DAF7;
	border: none;
	color: white;
	opacity: 0.8;
	cursor: pointer;
	margin-bottom: 0;
	width: 100%;
	line-height:2.5;
	text-align:center;
	text-transform:uppercase;
	font-size:1.1em;
	}
input[type="submit"]:hover{
	opacity: 1;
	}
input[type="submit"]:active{
	transform: scale(0.95);
	}
@media (max-width):768px){
	form{
		width:75%;
	}

@media (max-width):480px){
	form{
		width:95%;
	}
