* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

body {
	font-family: "Roboto Mono", monospace;
	color: #737373;
	
	display: flex;
	justify-content: center;
	background-color: #e0e0e0;
}

.loginForm {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: center;
}

.loginForm input {
	margin-top: 1em;
	margin-bottom: 1em;
	border: none;
	border-radius: 5px;
	height: 2em;
	width: 90%;
	
	padding-left: 5%;
	color: rgb(115, 115, 115);
}

.loginform input:nth-child(3) {
	margin-bottom: 3em;
	margin-top: auto;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #b8b8b8;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b8b8b8;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #b8b8b8;
}

.loginBox {
	width: 14em;
	height: 14em;
	display: flex;
	flex-direction: column;
	position: absolute;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	overflow: hidden;
	align-items: center;
	
	border-radius: 50px;
	background: #e0e0e0;
	box-shadow:  20px 20px 60px #bebebe,
             -20px -20px 60px #ffffff;
}

.title {
	/*font-family: 'Roboto Mono', monospace;*/
	font-size: 1.5em;
	letter-spacing: 5px;
	margin-top: 2em;
	margin-bottom: 1em;
	text-align: center;
}

.credits {
	position: absolute;
	bottom: 0.5em;
	left: 1em;
	
	color: rgb(200, 200, 200);
	/*font-family: "Roboto Mono", monospace;*/
	font-size: 10px;
}