html {
	
	height:100%;
	width:100%;
}


body {
	margin:0;
	font-family: 'Open Sans', sans-serif;
	height:100%;
	width:100%;
	background-color:#f5f5f5;
}

.area {
	background-color:#263238;
	color:#f5f5f5;
}

/* MENU */
.wrap {
	background-color:#455A64;
	overflow:hidden;
	position:relative;
	
}
.menu {
	float:left;
position:relative;
left:50%;
}

.items {
	float:left; 
position:relative;
left:-56%;
list-style:none; 
margin:0;
}

.items li {
	float:left;
}

.items li a {
	float:left;
	font-size:20px;
	display:block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.items li a:hover {
	background-color: #111;
}

/* CONTENT */
.content {
	width:100%;
	padding-bottom:10%;
	margin:0;
	text-align: center;
	position: absolute;
}

* {
	margin:0;
}

.action {
	display:block;
	width:260px;
	height:60px;
	line-height:60px;
	font-size:20px;
	text-decoration:none;
	color:white;
	margin-top:40px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	box-shadow: 5px 5px 8px #888;
}

#act1 {
	background-color:#c00;
}

#act1:hover {
	background-color:#900;
}

#act2 {
	background-color:#0c0;
}

#act2:hover {
	background-color:#090;
}

#act3 {
	background-color:#00c;
}

#act3:hover {
	background-color:#009;
}

.form {
	margin-top:40px;
}

.box {
	margin-top:5%;
	padding-top:5%;
	padding-bottom:5%;
	width:500px;
	
	background-color:#9e9e9e;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

input {
	font-size:17px;
	padding:1px;
}

input[type=text], input[type=password]{
	color: black;
	border-top:0px;
	border-left:0px; 
    border-right:0px; 
	border-bottom:2px solid #777;
	background-color: rgba(0,0,0,0);
}

input[type=submit], input[type=reset] {
	width:100px;
	height:50px;
}

.divider {
	height:50px;
	background-color:#455A64;
	box-shadow: 0 2px 10px 0 rgba(0,0,0,0.6);
}

@media screen and (max-width:680px) {
  
  .box{
	  width:100%;
  }
}