@charset "utf-8";
/* CSS Document */

form input[type="submit"] {
	-webkit-appearance:none;
}

/* Form Layout */
.form-wrapper {
  background: #fafafa;
  margin: 0 auto;
  padding: 40px;
  max-width: 370px;
}

.signInTitle {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
}

form {
}

.form-item {
  margin-bottom: 0.75em;
  width: 100%;
}

.form-item input {
  background: #fafafa;
  border: none;
  border-bottom: 2px solid #e9e9e9;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  height: 50px;
  transition: border-color 0.3s;
  width: 100%;
}

.form-item input:focus {
  border-bottom: 2px solid #c0c0c0;
  outline: none;
}

.button-panel {
  margin: 2em 0 0;
  width: 100%;
}

.button-panel .button {
  background: #208ae2;
  border: none;
  color: #fff;
  cursor: pointer;
  height: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  width: 100%;
	border-radius: 5px;
}

.button:hover {
  background: #005eac;
}

.form-footer {
  font-size: 1em;
  padding-top: 30px;
  text-align: center;
}

.form-footer a {
  color: #8c8c8c;
  text-decoration: none;
  transition: border-color 0.3s;
}

.form-footer a:hover {
  border-bottom: 1px dotted #8c8c8c;
}

/**
 ****************************************************
 * 
 * screens smaller than 480
 * 
 ****************************************************
 */
@media only screen and (max-width: 479px) {
.form-wrapper {

  padding: 30px;
  max-width: auto;
}
	
.signInTitle {
	font-size: 1.3rem;
}
	
}
