* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: #f6f7f9;
	color: #15171a;
}

a {
	color: #1d4ed8;
	text-decoration: none;
}

.content {
	min-height: 100vh;
	display: grid;
	grid-template-rows: auto 1fr;
}

.header {
	padding: 28px;
}

.inlogo {
	color: #15171a;
	font-size: 20px;
	font-weight: 700;
}

.auth {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.auth_form {
	width: 100%;
	max-width: 420px;
	padding: 28px;
	background: #fff;
	border: 1px solid #e6e8ec;
	border-radius: 8px;
}

.auth_form h1 {
	margin: 0 0 22px;
	font-size: 28px;
}

.base {
	display: grid;
	gap: 12px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #d0d5dd;
	border-radius: 6px;
	font: inherit;
}

.checkbox-line {
	display: flex;
	gap: 10px;
	align-items: center;
	color: #475467;
	font-size: 14px;
}

.auth_form .result {
	margin: 14px 0;
	color: #b42318;
}

.auth_form .result.success {
	color: #067647;
}

.auth_submit {
	width: 100%;
	min-height: 44px;
	border: 1px solid #15171a;
	border-radius: 6px;
	background: #15171a;
	color: #fff;
	font: inherit;
	cursor: pointer;
}

.auth_link {
	margin: 18px 0 0;
	color: #667085;
	font-size: 14px;
}

.twofa-input {
	margin-top: 14px;
}

.twofa-input .title {
	margin-bottom: 8px;
	color: #475467;
	font-size: 14px;
}
