body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

* {
	box-sizing: border-box;
}

.auth {
  background: hsla(31,15%,50%,.1);
  min-height: 100vh;
  width: 100vw;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.auth a .auth label {
	font-size: 14px;
	color: #333;
}
.auth a {
	text-decoration: none;
	font-size: 14px;
	color: #333;
}
.auth label {
	font-weight: 600;
	display: block;
	margin-bottom: .5rem;
	max-width: 100%;
}
.auth label.checkbox-label {
  display: inline-block;
}

.auth a:hover {
	text-decoration: underline;
}

.auth .errors {
	margin-top: 0;
	padding-left: 0;
	list-style: none;
  color: red;
}

.auth-box {
	box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  width: 100%;
	max-width: 420px;
	padding: 32px;
	background: #f4f4f4;
	margin-top: 10px;
	margin-bottom: 10px;
}

.auth-logo {
	font-size: 35px;
	text-align: center;
	margin-bottom: 25px;
	font-weight: 300;
}
.auth-logo a {
	color: #444;
	text-decoration: none;
	font-size: 40px;
}
.auth-logo b {
	transition: all 0.3s ease;
}
.auth-logo a:hover {
	text-decoration: none
}
.auth-logo a:hover b {
	color: #e23e34
}

.signup-link {
	display: block;
	margin-top: 30px;
}

.auth-form {
	margin-top: 0;
	padding-left: 0;
	margin: 0;
	list-style: none;
}

.auth-form li {
	margin-bottom: 15px;
}

.forgot-password {
	float: right;
	margin-top: -30px;
}

.input {
	width: 100%;
	max-width: 100%;
	margin-bottom: .5rem;
	box-shadow: inset 0 1px 2px rgb(10 10 10 / 10%);
	font-size: 14px;
	height: 40px;
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 6px 10px;
	border-radius: 2px;
}

.input[disabled], .input[readonly] {
  opacity: 0.4;
}

.button {
	width: 100%;
	padding: 14px 0;
	font-size: 12px;
	font-weight: 400;
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	border: 0;
	border-radius: 2px;
	border-radius: 30px;
	background-color: #3d3d3d;
}

