html{
	height: 100%;
	margin: 0;
	padding: 0;
}

body{
	font-family: Arial;
	background: linear-gradient(#00B2CC,#0080CC);
}

form{
	text-align: center;
	background-color: #80d8e6;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 10px 20px 10px 20px;
	border-radius: 10px;
	box-shadow: 5px 10px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

label{
	display: none;
	width: 100%;
	text-align: left;
}

input{
	width: 100%;
	margin: 7px -5px;
	font-family: inherit;
	background-color: white;
	display: block;
	border: 0;
	padding: 5px 5px;
	border-radius: 5px;
}
input:focus{
	outline: none;
}

button{
	color: black;
	font-family: inherit;
    cursor: pointer;
    text-transform: uppercase;
    border: 0;
    padding: 5px;
    margin-top: 10px;
    margin-left: -5px;
    border-radius: 5px;
	background-color: white;
}
button:hover{
	background-color: #00B2CC;
	color: white;
	box-shadow: 2px 2px 2px 1px black;
	transform: translate(-1px,-1px);
}
button:active{
	box-shadow: none;
	transform: translate(0px,0px);
}
button:focus{
	box-shadow: none;
	transform: translate(0px,0px);
}

a{
	color: white;
}
a:hover{
	font-weight: bold;
}