@import "https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700)";
body {
  font: 13px/20px "Open Sans", Tahoma, Verdana, sans-serif;
  color: #a7a599;
  background: #31302b;
}

/*auth form style*/
/* === Logo === */
.logo {
  background-position: center;
  height: 60px;
  width: 140px;
  margin: 100px auto 30px auto;
}

/* === Form === */
.form {
  width: 100%;
}
.form .field {
  position: relative;
  margin: 0 50px;
}
.form .field i {
  font-size: 18px;
  left: 0px;
  top: 0px;
  position: absolute;
  height: 44px;
  width: 44px;
  color: #f7f3eb;
  background: #676056;
  text-align: center;
  line-height: 44px;
  transition: all 0.3s ease-out;
  pointer-events: none;
}

/* === auth styles === */
.auth {
  position: relative;
  margin: 100px auto;
  width: 370px;
  background: white;
  border-radius: 3px;
  padding-bottom: 20px;
}

.option-links {
  text-align: center;
}

.option-links a {
  text-align: center;
  color: grey;
  display: block;
}

.auth:before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
h1 {
  line-height: 55px;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.register h1 {
   background: #1abc9c;
}

.login h1 {
  background: #3269bc;
}

.forgot h1 {
  background: #bc454a;
}

.register .form button[type=submit] {
  background-color: #16a085;
}

.login .form button[type=submit] {
  background-color: #2b59a3;
}

.forgot .form button[type=submit] {
  background: #b43e42;
}

.auth .submit {
  text-align: center;
}
.auth p:first-child {
  margin-top: 30px;
}
.auth p .remember {
  float: left;
}
.auth p .remember label {
  color: #a7a599;
  font-size: 12px;
  cursor: pointer;
}
.auth p .forgot {
  float: right;
  margin-right: 50px;
}
.auth p .forgot a {
  color: #a7a599;
  font-size: 12px;
  text-decoration: none;
  font-style: italic;
  transition: all 0.3s ease-out;
}
.auth p .forgot a:hover {
  color: #f2672e;
}

/*input style*/
/* === Input Form === */
::-webkit-input-placeholder {
  color: #ded9cf;
  font-family: 'Open Sans';
}

:-moz-placeholder {
  color: #ded9cf !important;
  font-family: 'Open Sans';
}

.form input[type=text], .form input[type=email], .form input[type=password] {
  font-family: 'Open Sans', Calibri, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 15px 10px 55px;
  position: relative;
  width: 200px;
  height: 24px;
  color: #676056;
  border: none;
  background: #f7f3eb;
  color: #777;
  transition: color 0.3s ease-out;
}

.form input[type=text], .form input[type=password] {
  margin-bottom: 15px;
}

.form input[type=text]:focus,
.form input[type=password]:focus,
.form button[type=submit]:focus {
  outline: none;
}

.form button[type=submit] {
  margin-top: 15px;
  width: 270px;
  text-align: center;
  font-size: 14px;
  font-family: 'Open Sans',sans-serif;
  font-weight: bold;
  padding: 12px 0;
  letter-spacing: 0;
  color: #fff;
  text-shadow: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
}

/*continued styling for input */
.form input[type="checkbox"] {
  display: none;
}

.form input[type="checkbox"] + label span.mark {
    display:inline-block;
    width:16px;
    height:16px;
    margin-right: 10px;
    vertical-align:sub;
    background:url("../img/checkbox.png") left top no-repeat;
    cursor:pointer;
}

.form input[type="checkbox"] + label span.text{
    margin-top: 1px;
}

.form input[type="checkbox"]:checked + label span.mark {
    background:url("../img/checkbox_checked.png") left top no-repeat;
}
/* === Copyright === */
.copyright {
  margin-top: 30px;
  text-align: center;
}
.copyright p, .copyright a {
  color: #828078;
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease-out;
}
.copyright p a:hover, .copyright a a:hover {
  color: #f2672e;
}

.message {
  padding: 10px;
  color: #000;
}

.message strong {
  font-weight: bold;
}

p.checkbox {
  text-align: center;
}

.form-title {
  background: #3269bc;
}

.fos_user_change_password label {
  display: block;
  font-size: 14px;
}

.fos_user_change_password ul {
  color: red;
}

.fos_user_change_password input {
  padding: 15px;
  background: #f7f3eb;
  border: none;
  width: 100%;
  box-sizing: border-box;
}

.fos_user_change_password input[type="submit"] {
  display: block;
  margin: 0 auto;
  width: 70%;
  box-sizing: border-box;
  background: #3269bc;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

#fos_user_change_password_form {
  width: 70%;
  margin: 20px auto 0;
}

#fos_user_change_password_form div {
  margin-bottom: 15px;
}