html {
	height: 100%;
}
body {
	background-color: #f6f8fa;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	height: 100%;
	min-height: 550px;
}
.container {
	max-width: 360px;
	width: 100%;
	background: #ffffff;
	padding: 40px;
	border: 1px solid #d0d7de;
	border-radius: 6px;
	box-shadow: 0 1px 0 rgba(27, 31, 35, 0.04);
	text-align: center;
}
.logo {
	height: 90px;
	width: auto;
}
.header {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	margin: 0;
	margin: 20px 0;
}
.oauth-buttons {
	display: flex;
	flex-direction: column;
}
.oauth-buttons > button {
	background: #ffffff;
	border: 1px solid #d0d7de;
	border-radius: 6px;
	padding: 10px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background 0.2s ease;
}
.oauth-buttons > button > img {
	width: 16px;
	height: 16px;
}
.oauth-buttons > button:hover {
	background-color: #f3f4f6;
}
.divider {
	position: relative;
	text-align: center;
	margin: 20px 0;
	color: #6a737d;
	font-size: 12px;
}
.divider::before,
.divider::after {
	content: "";
	height: 1px;
	background: #d0d7de;
	position: absolute;
	top: 50%;
	width: 40%;
}
.divider::before {
	left: 0;
}
.divider::after {
	right: 0;
}
form {
	display: flex;
	flex-direction: column;
	text-align: left;
	margin: 0;
}
form label {
	font-weight: 600;
	margin-bottom: 5px;
}
form input {
	padding: 8px;
	margin-bottom: 15px;
	border: 1px solid #d0d7de;
	border-radius: 6px;
	font-size: 14px;
}
.password-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.forgot {
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	color: #0969da;
	text-decoration: none;
}
.forgot:hover {
	text-decoration: underline;
}
button[type="submit"] {
	background-color: #2da44e;
	color: white;
	padding: 10px;
	font-size: 14px;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 10px;
}
button[type="submit"]:hover {
	background-color: #218639;
}
div.error {
	margin-top: 10px;
	font-size: 14px;
	color: #f00;
}