:root {
	/* -- Logo */
	--theme-logo-width: 300px;
	--theme-logo-height: 93px;

	/* -- Colors */
	--theme-color-main       : #08104e;
	--theme-color-primary    : #002099;
	--theme-color-secondary  : #3488ff;
	--theme-color-tertiary   : #3488ff;
	--theme-color-quaternary : #94d227;
	--theme-color-body       : #fff;
	--theme-color-danger     : #ff0000;

	/* -- Transitions */
	--theme-transition-duration: 0.4s;

	/* -- Global */
	--theme-border-radius: 10px;
}

body.login { background-color: var(--theme-color-body); color: var(--theme-color-body); display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 100svh; }
body.login #login { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 20px 80px 20px; }
body.login #login > h1,
body.login #login > form { width: 100%; }
body.login #login > h1 > a { background-image: url(./images/logo.png); width: var(--theme-logo-width); height: var(--theme-logo-height); background-repeat: no-repeat; background-position: center center; background-size: var(--theme-logo-width) var(--theme-logo-height); margin: 0 auto; }
body.login #login > p { padding: 0; margin: 0; }
body.login #login > p a { color: var(--theme-color-main); }
body.login #login > p a:hover { color: var(--theme-color-main); text-decoration: underline; }
body.login #loginform,
body.login #lostpasswordform { border-radius: var(--theme-border-radius); border: 0; background-color: var(--theme-color-primary); }
body.login #login > h1 { order: 1; }
body.login #login > form { order: 2; }
body.login #login > p#backtoblog { order: 3; margin-right: auto; }
body.login #login > p#nav { order: 4; }
body.login #login > p { order: 10; }
body.login input.button { background: var(--theme-color-quaternary); border-radius: 5px; color: var(--theme-color-main); border: 0; cursor: pointer; transition: background, color var(--theme-transition-duration) !important; min-width: 80px; }
body.login input.button:hover { background: var(--theme-color-main); color: white; }
body.login .notice { color: var(--theme-color-body); }
body.login .message,
body.login .notice,
body.login .success { background-color: var(--theme-color-main); border-radius: var(--theme-border-radius); }
body.login .message a,
body.login .notice a,
body.login .success a { color: var(--theme-color-primary); }
body.login .privacy-policy-page-link { margin: 0; order: 10; }
body.login .privacy-policy-page-link a { text-decoration: none; color: #000; color: var(--theme-color-primary); }
body.login .privacy-policy-page-link a:hover { text-decoration: underline; }
body.login form .input { width: 100%; line-height: 1.1; background-color: #f4f4f4; color: #2229; border: 1px solid #f4f4f4; border-radius: 5px; align-items: center; outline: none; transition-property: color, border; transition-duration: var(--theme-transition-duration); font-size: 14px; height: 46px; padding: 0 14px; }
body.login form .input:focus { border-color: var(--theme-color-main); color: var(--theme-color-main); outline: none; }
body.login form .forgetmenot input { position: absolute; left: -4000px; opacity: 0; }
body.login form .forgetmenot input:checked + label:before { border-color: var(--theme-color-quaternary); background-color: var(--theme-color-main); box-shadow: inset 0 0 0 3px white;	}
body.login form .forgetmenot label { cursor: pointer; display: block; padding: 0 0 0 26px; margin: 0; position: relative; font-size: 12px; line-height: 1.3; }
body.login form .forgetmenot label:before { content: ' '; position: absolute; left: 0; top: 0; width: 16px; height: 16px; border: 1px solid rgba(34, 34, 34, .6); background-color: #fff; transition-property: border, background, box-shadow; transition-duration: var(--theme-transition-duration); }
