/* ==========================================================================
   wp-login.php

   Loaded on its own, not alongside base.css — WordPress renders the login
   screen without the theme's stylesheets — so the palette is written out
   literally here. The values mirror base.css: #E98C00 = --color-orange
   (--color-primary), #B83288 = --color-pink (--color-secondary).
   ========================================================================== */

#login h1 a,
.login h1 a {
	background-image: url('../images/logo.png');
	width: 200px;
	height: 64px;
	padding-bottom: 30px;
	background-size: 200px;
	background-repeat: no-repeat;
}

#login h2 {
	margin-bottom: 10px;
	color: #E98C00;
}

#loginform {
	margin-top: 50px;
}

.wp-core-ui #login .button-primary {
	border: none;
	background: #B83288;
	box-shadow: none;
	text-shadow: none;
}

.wp-core-ui #login .button-primary:hover {
	background: #D24CA2;
}

/* Intro block above the form, from mu-plugins/ontwo-user-approval.php.
   overflow contains the button: core's login.css floats .button-primary right. */
.ontwo-login-intro {
	overflow: auto;
	margin-bottom: 20px;
	padding: 20px;
	border: 1px solid #ddd;
	background: #fff;
}

.ontwo-login-intro h2 {
	margin-top: 0;
}

.ontwo-login-intro p:last-child {
	margin-bottom: 0;
}
