.login_form {
	width: 100%;
	text-align: left;
	margin-top: 60px;
}

.login_text_input {
	background: var(--post-background);
	font-size: 1.2em;
	height: 50px;
	overflow: hidden;
	border-radius: 6px;
	margin: 5px 0 10px 0;
	padding: 25px;
	width: 100%;
	box-sizing: border-box;
}

.login_buttons {
	display: flex;
	padding: 10px 0 20px 0;
	width: 100%;
	flex-direction: row;
	justify-content: flex-end;
	box-sizing: border-box;
}

.login_button {
	width: 100%;
	color: var(--button-color);
	background: var(--button-accented-background);
	border-radius: 6px;
	height: 40px;
	cursor: pointer;
}

.login_button:hover,
.login_button:active,
.login_button:focus {
	background: var(--button-accented-background-highlighted);
}