/* Login */


body {
	background: #e9e9e9;
	color: #666666;
	font-family: 'RobotoDraft', 'Roboto', sans-serif;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
	position: relative;
	max-width: 460px;
	width: 100%;
	margin: 0 auto 100px;
}
.container.active .card:nth-child(2) {
	background: #fafafa;
	margin: 0 10px;
}
.container.active .card.alt {
	top: 20px;
	right: 0;
	width: 100%;
	min-width: 100%;
	height: auto;
	border-radius: 5px;
	padding: 60px 0 40px;
	overflow: hidden;
}
.container.active .card.alt .toggle {
	position: absolute;
	top: 40px;
	right: -70px;
	box-shadow: none;
}
.container.active .card.alt .toggle:before {
	content: '';
}
.container.active .card.alt .title,
.container.active .card.alt .input-container,
.container.active .card.alt .button-container {
	left: 0;
	opacity: 1;
	visibility: visible;
}

/* Card */
.card {
	position: relative;
	margin-top: 20px;
	background: #ffffff;
	border-radius: 5px;
	padding: 0px 0 40px 0;
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	/* Title */
	/* Inputs */
	/* Button */
	/* Footer */
	/* Alt Card */
}
.card .title {
	position: relative;
	z-index: 1;
	border-left: 5px solid #184256;
	padding: 10px 0 10px 25px;
	color: #184256;
	font-size: 32px;
	font-weight: 600;
}
.card .input-container {
	position: relative;
	margin: 0 30px 25px;
}
.card .input-container input {
	outline: none;
	z-index: 1;
	position: relative;
	background: none;
	width: 100%;
	height: 60px;
	border: 0;
	color: #212121;
	font-size: 24px;
	font-weight: 400;
}
.card .input-container input:focus ~ .bar:before, .card .input-container input:focus ~ .bar:after {
	width: 50%;
}

.card .input-container label {
	position: absolute;
	top: 0;
	left: 0;
	color: #757575;
	font-size: 24px;
	font-weight: 300;
	line-height: 60px;
}
.card .input-container .bar {
	position: relative;
	background: #757575;
	width: 100%;
	height: 1px;
	margin-bottom:2px;
}
.card .input-container .bar:before, .card .input-container .bar:after {
	content: '';
	position: absolute;
	background: #184256;
	width: 0;
	height: 2px;
}
.card .input-container .bar:before {
	left: 50%;
}
.card .input-container .bar:after {
	right: 50%;
}
.card .button-container {
	margin: 0 60px;
	text-align: center;
}
.card .button-container button {
	outline: 0;
	cursor: pointer;
	position: relative;
	display: inline-block;
	background: 0;
	width: 240px;
	border: 2px solid #2ca4d4;
	padding: 20px 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	overflow: hidden;
}
.card .button-container button span {
	position: relative;
	z-index: 1;
	color: #2ca4d4;
}
.card .button-container button:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	background: #184256;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	margin: -15px 0 0 -15px;
	opacity: 0;
}
.card .button-container button:hover, .card .button-container button:active, .card .button-container button:focus {
	border-color: #184256;
}
.card .button-container button:hover span, .card .button-container button:active span, .card .button-container button:focus span {
	color: #184256;
}
.card .footer {
	margin: 40px 0 0;
	color: #d3d3d3;
	font-size: 24px;
	font-weight: 300;
	text-align: center;
}
.card .footer a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: .3s ease;
	transition: .3s ease;
}
.card .footer a:hover {
	color: #bababa;
}
.card.alt {
	position: absolute;
	top: 40px;
	right: -70px;
	z-index: 10;
	width: 140px;
	height: 140px;
	background: none;
	border-radius: 100%;
	box-shadow: none;
	padding: 0;
	-webkit-transition: .3s ease;
	transition: .3s ease;
	/* Toggle */
	/* Title */
	/* Input */
	/* Button */
}
.card.alt .toggle {
	position: relative;
	background: #184256;
	width: 140px;
	height: 140px;
	border-radius: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	color: #ffffff;
	font-size: 58px;
	line-height: 140px;
	text-align: center;
	cursor: pointer;
}
.card.alt .toggle:before {
	content: '\f040';
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
}
.card.alt .title,
.card.alt .input-container,
.card.alt .button-container {
	left: 100px;
	opacity: 0;
	visibility: hidden;
}
.card.alt .title {
	position: relative;
	border-color: #ffffff;
	color: #ffffff;
}
.card.alt .title .close {
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 60px;
	display: inline;
	color: #ffffff;
	font-size: 58px;
	font-weight: 400;
}
.card.alt .title .close:before {
	content: '\00d7';
}
.card.alt .input-container input {
	color: #ffffff;
}
.card.alt .input-container input:focus ~ label {
	color: #ffffff;
}
.card.alt .input-container input:focus ~ .bar:before, .card.alt .input-container input:focus ~ .bar:after {
	background: #ffffff;
}
.card.alt .input-container input:valid ~ label {
	color: #ffffff;
}
.card.alt .input-container label {
	color: rgba(255, 255, 255, 0.8);
}
.card.alt .input-container .bar {
	background: rgba(255, 255, 255, 0.8);
}
.card.alt .button-container button {
	width: 100%;
	background: #ffffff;
	border-color: #ffffff;
}
.card.alt .button-container button span {
	color: #184256;
}
.card.alt .button-container button:hover {
	background: rgba(255, 255, 255, 0.9);
}

/* Logo */
img#logo{
	padding: 10px;
	height: 200px;
	margin: auto;
}

.nopadding {
	padding: 0 !important;
	margin: 0 !important;
}

.vendor{
	background-color: #ececec;
	color:#3c5f7d;
	font-size: 16px;
	padding:15px;
	border-radius: 4px;
}

.title_ref{
	font-weight: 700;
}
.title_ref.header{
	font-size: 1.5em;
}
