body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

.form {
  text-align: center;
  max-width: 500px;
	margin: 0 auto;
	position: relative;
  top: 50%;
  transform: translateY(50%);
	border: 1px solid #fff;
	border-radius: 5px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  padding: 40px 20px;
}

.form input {
  width: 200px;
	padding: 15px 25px;
	font-size: 14px;
	color: #9d9e9e;
	text-shadow: 1px 1px 0 rgba(256,256,256,1.0);
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
	-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
	-webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.50);
  outline: none;
  margin-bottom: 20px;
}

.form label {
  display: block;
  margin-bottom: 10px;
  color: #555;
}

.main__title {
  margin: 0 0 40px;
}

#password_reset_request_submit,
#login_submit,
#password_reset_token_submit {
  background: #00ce81;
  border: none;
  padding: 15px 25px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
  border-radius: 5px;
  width: 350px;
  outline: none;
}

.txt {
  font-size: 18px;
  margin-bottom: 40px;;
}

.txt--green {
  color: #00ce81;
}

#password_reset_request_submit:hover,
#login_submit:hover,
#password_reset_token_submit:hover {
  opacity: 0.8;
}

.form__link {
  color: #808080;
  text-decoration: none;
}

.form__link:hover {
  opacity: 0.7;
  color: #b23b3b;
}

.header__bar .form__link:hover {
  opacity: 0.7;
}

.header__bar {
  display: block;
  text-align: center;
  background: #ddd;
  padding: 20px;
  align-items: center;
}

.header__bar--right {
  margin-top: 30px;
}

.header__bar .main__title,
.header__bar p {
  padding: 0;
  margin: 10px 0;
}

.header__bar .main__title {
  margin: 0 auto 0 0;
}

@media screen and (min-width : 768px) {
  .header__bar {
    text-align: inherit;
    display: flex;
    padding: 20px 50px;
  }
  .header__bar--right {
    margin: 0;
    display: flex;
    margin-right: 0;
    margin-left: auto;
  }
  .header__bar .form__link {
    margin-left: 20px;
    vertical-align: middle;
  }
  .header__bar .main__title,
  .header__bar p {
    margin: 0;
  }
  .form input {
    width: 300px;
  }
}
