body {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}

body:before{
	content: '';
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-image: url("../img/p.jpeg");
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
}
.container-form {
	position: absolute;
	top: 60%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	height: 300px;
	width: 400px;
	padding: 80px 40px;
	background: rgba(0,0,0,0.6);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.avatar {
	position: absolute;
	background-color: #fff;
	padding: 5px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	top: calc(-80px/2);
	left: calc(50% - 40px);
}
.container-form h2 {
	margin: 0;
	padding: 0 0 20px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}
.container-form p{
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #fff;
}
.container-form input{
	width: 100%;
	margin-bottom: 20px;
}
.container-form input[type=text],
.container-form input[type=password] {
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	outline: none;
	height: 35px;
	color: #fff;
	font-size: 15px;
}
.container-form input[type=submit] {
	height: 30px;
	color: #fff;
	font-size: 15px;
	background: #800020;
	cursor: pointer;
	border-radius: 5px;
	border: none;
	outline: none;
	margin-top: 5%;
}
.container-form input[type=submit]:hover {
	background:#800025;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
input[type=checkbox] {
	width: 5%;
}

/* top menu style */

.topnav {
  overflow: hidden;
  background-color: #333;
  position: absolute;
  width: 100%;
}
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}
.logo {
  float: left;
  height: 50px;
  width: 130px;
}
.topnav .icon {
  display: none;
}
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

@media only screen and (max-width: 600px) {
  .container-form {
  	width: 80%;
  	height: 300px;	
  }
}