/************************************************************
MISS ROUSE – LOGIN FULL CENTER
************************************************************/

/* RESET STRUCTURE */
html, body.login {
	height: 100%;
}

body.login {
	background: linear-gradient(135deg, #ffffff 0%, #f4f5f7 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

/* WRAPPER */
body.login #login {
	width: 100%;
	max-width: 420px;
	padding: 0;
	margin: 0 auto;
}

/* LOGO */
body.login h1 {
	text-align: center;
	margin-bottom: 30px;
}

body.login h1 a {
	background-image: url('../images/missrouse-logo.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 260px;
	height: 80px;
	margin: 0 auto;
}

/* FORM CARD */
body.login form {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0,0,0,.08);
	padding: 40px 35px;
	border: none;
}

/* LABELS */
body.login label {
	font-size: 13px;
	font-weight: 600;
	color: #27282c;
}

/* INPUTS */
body.login input[type="text"],
body.login input[type="password"] {
	border-radius: 8px;
	border: 1px solid #e3e5e8;
	padding: 12px 14px;
	transition: all .2s ease;
}

body.login input[type="text"]:focus,
body.login input[type="password"]:focus {
	border-color: #FE0000;
	box-shadow: 0 0 0 2px rgba(254,0,0,.15);
	outline: none;
}

/* BUTTON */
body.login .button-primary {
	background: #FE0000;
	border: none;
	border-radius: 8px;
	padding: 10px 20px;
	font-weight: 600;
	text-shadow: none;
	box-shadow: none;
	transition: .2s ease;
}

body.login .button-primary:hover {
	background: #833000;
}

/* LINKS */
body.login #nav,
body.login #backtoblog {
	text-align: center;
	margin-top: 20px;
}

body.login #nav a,
body.login #backtoblog a {
	color: #FE0000;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
	color: #833000;
}

/* LANGUAGE SWITCHER */
body.login .language-switcher {
	width: 100%;
	max-width: 420px;
	margin-top: 20px;
	text-align: center;
}
