@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;600&display=swap');

/*! reset */

p, input, button {
	border: 0;
	margin: 0;
	padding: 0;
}

/*! general */

* {
	-webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
	font-family: 'Barlow', sans-serif;
 font-size: 62,5%;
	font-weight: 100;
 line-height: 100%;
	letter-spacing: 1px;
}

html, body {
	background-color: rgb(245, 245, 245);
	font-size: 1rem;
 height: 100%;
 margin: 0;
 min-height: 100%;
 padding: 0px;
 width: 100%;
}

p {
	font-size: 50px;
	font-weight: 600;
	padding: 15px;
}

/*! page content */

.wrapper {
	font-size: 20px;
	left: 50%;
	position: absolute;
	text-align: center;
 top: 50%;
 transform: translate(-50%, -50%);
	max-width: 500px;
	width: 100%;
}

.logo {
	margin-bottom: 30px;
}

/*! Form */

input {
	background-color: transparent;
	border: 0;
	color: black;
	display: block;
	font-size: 50px;
	font-weight: 600;
	padding: 15px;
	text-align: center;
	width: 100%;
}

input[type="password"] {
	letter-spacing: 20px;
}

input[name="token"] {
	letter-spacing: 20px;
}

button {
	background-color: transparent;
	border: none;
	color: black;
	cursor: pointer;
	font-size: 50px;
	margin-top: 30px;
	padding: 15px 30px;
}

input:focus, button:focus {
	outline: none;
}

::-webkit-input-placeholder {
	color: black;
	letter-spacing: 0px;
	opacity: 1;
}

::-moz-placeholder {
	color: black;
	letter-spacing: 0px;
	opacity: 1;
}

:-ms-input-placeholder {
	color: black;
	letter-spacing: 0px;
	opacity: 1;
}

:-moz-placeholder {
	color: black;
	letter-spacing: 0px;
	opacity: 1;
}

@media (max-width: 400px) {

}