body {
	background: rgb(30,71,115);
}

#login {
	width: 100%;
	min-width: 320px;
	max-width: 1080px;
	height: 100%;
	padding: 0;
	display: flex;
	align-items: first baseline;
	gap: 1rem;
	flex-wrap: wrap;
	align-content: center;
}

h1 {
	text-align: center;
}

.login h1 {
	flex-grow: 1;
}

p, label {
	color: #fefefe;
}

.login #backtoblog a, .login #nav a {
	color: #fefefe;
}

a {
	color: #ccc !important;
}

a:hover, a:focus {
	color: #fff !important;
	text-decoration: none !important;
	border-bottom: 1px dotted #fff !important;
}

h1 a:hover, h1 a:focus {
	border-bottom: none !important;
}

a:active {
	color: #ffd700;
}

.login form {
	background: none;
	border: 1px solid rgba(195,196,199,.625);
	border-radius: 1rem;
	flex-grow: 2;
	margin: 0 .5rem;
}

.login form .forgetmenot {
	float: none;
	margin-bottom: 1rem !important;
}

#wp-submit {
	width: 100%;
	background: #ffd700;
	color: #2E2E2E;
	border-radius: .25rem;
	border: none;
}
	#wp-submit:hover {
		font-weight: 650;
	}

.magic-login-normal-login button,
#continue-with-magic-login button {
	width: 100% !important;
	background: #ffd700 !important;
	color: #2E2E2E !important;
	border-radius: .25rem !important;
	border: none !important;
}
	.magic-login-normal-login button:hover,
	#continue-with-magic-login button:hover {
		font-weight: 650 !important;
	}

.magic-login-or-separator::before {
	content: 'or' !important;
	background-color: #05305e !important;
	font-size: 13px !important;
	color: #fefefe !important;
	display: inline-block !important;
	width: 62px !important;
	position: relative !important;
	z-index: 1 !important;
	line-height: 1.8rem !important;
	border-radius: 1rem !important;
	height: 2rem !important;
}
	
.magic-login-or-separator::after {
	content: "" !important;
	width: 100% !important;
	position: absolute !important;
	left: 0 !important;
	top: 50% !important;
	height: 0 !important;
	border-top: 1px dotted #fefefe !important;
	background-color: transparent !important;
}

.message.magic_login_block_login_success {
	background-color: #05305e !important;
	line-height: 1.8rem !important;
	border-radius: 1rem !important;
	min-height: 2rem !important;
	border-left: 0 transparent !important;
}

#controls {
	flex-basis: 100%;
	display: flex;
	align-items: baseline;
	justify-content: center;
	position: relative;
	top: 2rem;
	text-align: center;
	/* flex-direction: column; */
}
@media screen and (max-width: 500px) {	
	#controls {
		flex-direction: column;
	}
}

#login .notice {
	position: absolute;
	top: 1.2rem;
	left: 50%;
	transform: translateX(-50%);
	border: none;
	border-radius: 1.2rem;
}

.login .notice-error {
	background-color: #633c49;
}

.login .notice-info {
	background-color: #05305e;
}