html, body {
  font-family: "NoirPro";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  background: #f1eee9 url('/images/common/bg1440.png') no-repeat center center;
}

.container {
  display: flex;
  flex-flow: column wrap;
  margin: 0 auto;
  width: 100%;
}

.container .header {
  width: 100%;
  height: 50px;
  background-color: #b5c1b3;
}

.container a {
  text-decoration: none;
}

.container .content {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: calc( 100% - 50px );
  background-color: #f1eee9;
}

.container .content .top {
  width: 100%;
}
.container .content .top .box {
  display: flex;
  flex-flow: column wrap;
  background: #F1EEE9;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  margin: 50px 20px 0 20px;
}
.container .content .top .box .logo {
  width: 100%;
  height: 92px;
  background: url('/images/common/box-logo.png') no-repeat center 17px;
}
.container .content .top .box .title {
  padding-top: 10px;
  width: 100%;
  text-align: center;
  font-weight: 300;
  font-size: 20px;
  line-height: 20px;
  color: #9fa090;
}
.container .content .top .box .subtitle {
  padding-top: 10px;
  font-weight: 300;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  color: #b5c1b3;
}
.container .content .top .box .description {
  padding: 23px 27px 0 27px;
  text-align: center;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: #9FA090;
}


.container .content .top .box .form-group {
  margin: 25px 50px 0 50px;
}
.container .content .top .box .form-group .input {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  height: 32px;
  background: #FFFFFF;
  box-shadow: 0 20px 20px rgba(104, 103, 103, 0.1);
  border-radius: 20px;
}
.container .content .top .box .form-group:nth-child(2) {
  margin-top: 20px;
}

.container .content .top .box .form-group .input .validate {
  width: 24px;
  height: 30px;
}

.container .content .top .box .form-group .input .validate.success {
  background: url('/images/common/success.png') no-repeat center center;
}

.container .content .top .box .form-group .input .validate.error {
  background: url('/images/common/error.png') no-repeat center center;
}

.container .content .top .box .input input[type=text], .container .content .top .box .input input[type=password] {
  width: calc( 100% - 48px );
  margin-left: 24px;
  line-height: 30px;
  border: none;
  color: #686767;
}
.container .content .top .box .input input[type=text]:focus, .container .content .top .box .input input[type=password]:focus {
  outline: none;
}
/* Chrome, Firefox, Opera, Safari 10.1+ */
.container .content .top .box .input input[type=text]::placeholder, .container .content .top .box .input input[type=password]::placeholder {
  font-weight: 400;
  font-size: 12px;
  line-height: 32px;
  color: #c0c1b3;
  text-align: center;
}
/* Internet Explorer 10-11 */
.container .content .top .box .input input[type=text]:-ms-input-placeholder, .container .content .top .box .input input[type=password]:-ms-input-placeholder {
  font-weight: 400;
  font-size: 12px;
  line-height: 32px;
  color: #c0c1b3;
  text-align: center;
}
/* Microsoft Edge */
.container .content .top .box .input input[type=text]::-ms-input-placeholder, .container .content .top .box .input input[type=password]::-ms-input-placeholder {
  font-weight: 400;
  font-size: 12px;
  line-height: 32px;
  color: #c0c1b3;
  text-align: center;
}
.container .content .top .box .error-message {
  padding: 26px 0 0 0;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #E83A83;
  display: none;
}
.container .content .top .button {
  margin: -10px 20px 0 20px;
  text-align: center;
}
.container .content .top .button a {
  padding: 12px 53px 12px 53px;
  background: #e9d7c9;
  box-shadow: 0 20px 20px rgba(104, 103, 103, 0.1);
  border-radius: 20px;
  font-size: 15px;
  line-height: 13px;
  color: #FFFFFF;
}

.container .content .top .signup-or-signin {
  width: 100%;
  padding-top: 40px;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  color: #9fa090;
}
.container .content .top .signup-or-signin a {
  color: #159b93;
}

.container .content .bottom {
  width: 100%;
  font-weight: 300;
  font-size: 10px;
  line-height: 25px;
  text-align: center;
  color: #9fa090;
  align-self: flex-end;
}
.container .content .bottom a {
  color: #9fa090;
}

/************************* 576px *************************/
@media screen and (min-width:575px) {
  .container {
    max-width: 575px;
    background: #C4C4C4;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  }
  .container .content .top .box {
    margin: 135px 65px 0 65px;
  }
  .container .content .top .box .form-group {
    width: calc( 100% - 100px );
    margin: 25px 80px 0 80px;
  }
}