.login-container {
	background-color: white;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border: 1px solid lightgrey;
	border-radius: 5px;
	width: 320px;
	height: 140px;
	text-align: center;
}
.signup-container {
 	background-color: white;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border: 1px solid lightgrey;
	border-radius: 5px;
	width: 320px;
	height: 200px;
	text-align: center;
}

.auth-form input {
	margin: 10px;
	width: 300px;
	height: 25px;
	border: 1px solid lightgrey;
	border-radius: 2px;
}
.auth-form input[type=submit] {
    padding:5px 15px; 
    background: #1a73e8; 
    border:0 none;
    cursor:pointer;
    font-size: 15px;
    color: white;
}