/**
 * Styles for login & registration page
 */

 body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
}

p.mw_login_text {
	font-size: 12px;
	color: #6b6b6b;
}

header#page_header {
	/*padding-bottom: 70px;*/
}

div.wrap {
	width: 1080px;
	margin: 0 auto;
}



img#mw_logo {
	width: 330px;
	margin-top: 30px;
	margin-bottom: 65px;
}

div#login_panel {
	width: 415px;
	margin-right: 80px;
}

div#image_panel {
	width: 573px;
	border-left: 1px solid #3d1a52;
}
div#image_panel img {
	margin-left: 90px;
}

div#login_panel,
div#image_panel {
	float: left;
}


#login_panel h1 {
	font-size: 72px;
	line-height: 72px;
	margin-bottom: 0;
	margin-top: 0;
	text-transform: uppercase;
}

#login_panel h2 {
	font-size: 26px;
	margin-top: 0;
	margin-bottom: 0;
}

#login_panel, .inquiry-container h1,
#login_panel, .inquiry-container h2 {
	color: #3d1a52;
	font-family: Muli, sans-serif;
	font-weight: 600;
}


form#login_form {
	margin-top: 50px;
}

.label_hidden {
	display: none;
}

#login_panel input.mw_login_input {
	width: 95%;
	border: 1px solid #5d5d5d;
	color: #6b6b6b;
	font-size: 12px;
	padding: 5px 10px;
}

#login_panel input.mw_login_input.half {
	width: 44%;
}

#login_panel input.mw_login_input.half.last {
	margin-left: 1px;
}

#login_panel input.mw_login_input::placeholder {
	text-transform: uppercase;
}

#login_panel label,
a#reset_password_link {
	color: #6b6b6b;
	font-size: 12px;
	text-transform: uppercase;
}

div.login_float {
	width: 49%;
	float: left;
	margin: 25px 0;
}

div.login_float.align_right {
	text-align: right;
}

div.login_float p {
	margin: 0;
}

p.input_p {
	margin-bottom: 25px;
}
p.input_p.last {
	margin-bottom: 0;
}


p#login_btn_p {
	margin: 0;
}

button#login_btn, input#login_btn {
	color: #fff;
	font-family: Muli, sans-serif;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;

	background: #7b2a83;
	border: transparent none;
	cursor: pointer;
	padding: 16px 0;
	width: 100%;
}
button#login_btn:hover, input#login_btn:hover {
	background: #73197c;
}


div.styled_select {
	background-image: url(/../images/arrow.png);
	background-repeat: no-repeat;
	background-position: 100% 0;
	background-size: auto 22px;
	height: 22px;
	overflow: hidden;
	border: 1px solid #5d5d5d;
}

div.styled_select.tooltip {
	width: 90%;
	float: left;
}

div.select_tooltip {
	float: left;
	width: 7%;
	margin-left: 2%;
}

div.select_tooltip a {
	background: #7b2a83;
	color: #fff;
	cursor: pointer;
	display: block;
	font-weight: bold;
	width: 20px;
	height: 18px;
	padding-top: 2px;
	text-align: center;
	border-radius: 10px;
}

div.styled_select select {
   background: transparent;
   border: none;
   color: #6b6b6b;
   font-size: 14px;
   height: 22px;
   padding: 0 5px; /* If you add too much padding here, the options won't show in IE */
   text-transform: uppercase;
   width: 100%;
}

div.styled_select select:focus {
	box-shadow: none;
	outline: none;
}

div#select_tooltip_desc {
	display: none;
}

div#select_tooltip_desc p {
	color: #6b6b6b;
	font-size: 12px;
}


#login_panel label#account_terms_label {
	font-size: 11px;
}


input[type=submit]:focus {
	box-shadow: none;
	outline: none;
}


p#password_validation {
	display: none;
	font-size: 12px;
	padding: 5px;
	margin-top: -15px;
}

p#password_validation.input_success {
	border: 1px solid #b7bf33;
}

p#validation_error {
	border: 2px solid #c00;
	display: none;
	padding: 5px;
}

p.required_empty {
	border: 1px solid #c00;
}


footer#page_footer p,
footer#page_footer li {
	color: #fff;
	font-size: 12px;
}


div.footer_float {
	width: 50%;
	float: left;
}


footer#page_footer {
	background: #5d5d5d;
	margin-top: 85px;
}

p#copyright {
	margin-top: 20px;
}

ul#footer_menu {
	text-align: right;
}

ul#footer_menu li {
	display: inline;
	list-style-type: none;
}

ul#footer_menu li a {
	border-right: 1px solid #fff;
	color: #fff;
	display: inline-block;
	padding: 0 4px 0 0;
	text-decoration: none;
}

ul#footer_menu li.first a {
	padding-left: 0;
}

ul#footer_menu li.last a {
	border-right: none;
}


div.clrfix {
	width: 100%;
	clear: both;
}
.error {
	color: #c00;
}
.small {
	font-size: 80%;
}







/**
 * responsive
 */
@media screen and (max-width: 768px){

	div.wrap {
		width: 100%;
	}

	img#mw_logo {
		display: block;
		margin-left: 5%;
	}

	div#login_panel,
	div#image_panel {
		float: none;
	}

	div#login_panel {
		width: 90%;
		margin: 0 5%;
	}

	div#image_panel {
		border: none;
		margin-left: 0;
		margin-right: 0;
		margin-top: 50px;
		margin-bottom: -4px;
		width: 100%;
	}
	div#image_panel img {
		margin: 0;
		width: 100%;
	}

	#login_panel input.mw_login_input.half {
		width: 45%;
	}
	#login_panel input.mw_login_input.half.last {
		margin-left: 7px;
	}

	footer#page_footer {
		margin-top: 0;
		font-size: 11px;
	}
	footer#page_footer div.wrap {
		width: 90%;
	}

	div.footer_float {
		width: 90%;
		float: none;
	}

	p#copyright {
		margin-top: 0;
		padding-top: 20px;
	}

	ul#footer_menu {
		padding-left: 0;
		text-align: left;
		margin-bottom: 0;
		padding-bottom: 20px;
	}

	div.clrfix.nomobile {
		display: none;
	}

} /* 768px */




@media screen and (max-width: 500px){

	#login_panel h1 {
		font-size: 66px;
	}

	#login_panel input.mw_login_input.half {
		width: 42%;
	}
	#login_panel input.mw_login_input.half.last {
		margin-left: 5px;
	}

} /* 500px */
