﻿.form-wrapper {
	background: #fafafa;
	margin: 4em auto;
/*	padding: 0 1em; */
	max-width: 450px;
}

h1 {
	background: #666;
	color: #fff;
	font-size: 32px;
	text-align: center;
	padding: 16px 0;
}

form {
	padding: 1.5em;
}

.form-item {
	margin-bottom: 0.75em;
	width: 100%;
}

.form-item input {
	padding: 2px;
	background: #fafafa;
	border: none;
	border-bottom: 2px solid #e9e9e9;
/*	color: #666;	*/
/*	font-family: 'Open Sans', sans-serif; */
	font-size: 1em;
	height: 46px;
	transition: border-color 0.3s;
	width: 100%;
}

.form-item input:focus {
	background: #fafafa;
	border-bottom: 2px solid #c0c0c0;
	outline: none;
}

.login-err {
	color: #ff0000;
	margin-top: 1em;
}
.login-note {
	color: #ff9900;
	margin-top: 1em;
	line-height: 1.5em;
}
.button-panel {
	margin: 2em 0 0;
	width: 100%;
}

.button-panel .button {
	background: #f16272;
	border: none;
	color: #fff;
	cursor: pointer;
	height: 50px;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2em;
	letter-spacing: 0.05em;
	text-align: center;
	text-transform: uppercase;
	transition: background 0.3s ease-in-out;
	width: 100%;
}

.button-panel .button:hover {
	background: #ee3e52;
}

.pass {
	position: relative;
}
.eye svg {
	position: absolute;
	top: 0px;
	right: 18px;
	width: 24px;
	height: 24px;
	opacity: 0;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.eye svg:last-child {
/*	top: 4px; */
	opacity: 1;
}
