body {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	max-width: 768px;
	margin: auto;
	flex-wrap: wrap;
}

#login, .language-switcher {
  width: 320px;
  flex-shrink: 0;
}

@media ( max-width: 768px ) {
	body {
		flex-direction: column-reverse;
		height: unset;
	}
}

.email-login {
	width: 320px;
	margin: auto;
	flex-shrink: 0;
}

.email-login__header {
	background-color: #c30b76;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
	background-position: center;
	background-size: cover;
	padding: 1rem 1.5rem;
	color: white;
	border-radius: 8px 8px 0 0;
}

.email-login__title {
	font-weight: 400;
}

.email-login__instructions {
	margin: 1rem 0;
}

.email-login__form,
.login .email-login__form {
	margin-top: 0;
	border-radius: 0 0 8px 8px;
	border: none;
}

.email-login input {
	font-size: 24px;
	line-height: 1.33333333;
	width: 100%;
	border-width: .0625rem;
	padding: .1875rem .3125rem;
	margin: 0 6px 16px 0;
	min-height: 40px;
	max-height: none;
}

.email-login input:focus {
	border-color: #c30b76;
	box-shadow: 0 0 0 1px #c30b76;
	outline: 2px solid transparent;
}

.email-login .message,
.email-login .error,
.email-login .success {
 border-left:4px solid #72aee6;
 padding:12px;
 margin-left:0;
 margin-bottom:20px;
 background-color:#fff;
 box-shadow:0 1px 1px 0 rgba(0,0,0,.1);
 word-wrap:break-word
}

.email-login .success {
 border-left-color:#00a32a
}

.email-login .error {
  border-left-color:#d63638
}

.email-login .button {
	border: none;
	background-color: #c30b76;
}

.email-login .button:hover {
	background-color: #9a0c74;
}

.email-login .button:focus {
	background-color: #9a0c74;
	box-shadow: 0 0 0 1px #fff,0 0 0 3px #c30b76;
}

.email-login__logo {
	height: 46px;
	display: block;
	margin: 0 auto 1rem;
	display: none;
}