/* LoginX — Login Page Base Styles */

body.login {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, sans-serif;
}

body.login h1 a {
	width: 84px;
	height: 84px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

body.login #loginform,
body.login #lostpasswordform,
body.login #resetpassform {
	padding: 28px 32px 24px;
	margin-top: 24px;
}

body.login label {
	font-size: 13px;
	font-weight: 500;
}

body.login input[type="text"],
body.login input[type="password"],
body.login input[type="email"] {
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid #d4d4d4;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
	transition: border-color 0.15s, box-shadow 0.15s;
	width: 100%;
	box-sizing: border-box;
}

body.login input[type="text"]:focus,
body.login input[type="password"]:focus,
body.login input[type="email"]:focus {
	border-color: #0073aa;
	box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
	outline: none;
}

body.login #wp-submit,
body.login .button.button-primary,
body.login input.button.button-primary,
body.login button.button.button-primary {
	width: 100%;
	height: 42px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
	border-radius: 5px;
	transition: filter 0.15s;
	text-shadow: none;
}

body.login #nav,
body.login #backtoblog {
	text-align: center;
}

body.login #nav a,
body.login #backtoblog a {
	font-size: 13px;
	text-decoration: none;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
	text-decoration: underline;
}

/* Smooth page fade-in */
body.login {
	animation: loginx-fadein 0.3s ease;
}

@keyframes loginx-fadein {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}
