@charset "UTF-8";

.loginContainer {
  position: relative;
  min-height: 400px;
  margin: 80px auto 0;
}
.loginContainer:before,
.loginContainer:after {
  display: table;
  line-height: 0;
  content: "";
}
.loginContainer:after {
  clear: both;
}
.loginContainer > p {
  text-indent: 2px;
  color: red;
  text-align: center;
}
.loginContainer .loginContent {
  width: 270px;
  height: 270px;
  background-color: #fff;
  padding: 20px;
  margin: 40px auto 0;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
  box-sizing: border-box;
}
.loginContent .row {
  margin-left: -20px;
}
.loginContent .row:before,
.loginContent .row:after {
  display: table;
  line-height: 0;
  content: "";
}
.loginContent .login-form {
  margin-left: 25px;
}
.loginContent h2 {
  line-height: 40px;
  margin: 5px 0 15px;
  font-family: inherit;
  font-size: 31.5px;
  font-weight: bold;
  color: inherit;
  text-align: center;
  text-rendering: optimizelegibility;
}
.loginContent form {
  margin: 0 0 20px;
}
.loginContent fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.loginContent input[type="text"],
.loginContent input[type="password"] {
  display: block;
  margin: 0 0 10px;
  width: 206px;
  height: 20px;
  line-height: 20px;
  padding: 4px 6px;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #555555;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

.loginContent button.btn {
  display: block;
  margin: 20px auto 0;
  padding: 4px 12px;
  line-height: 20px;
  vertical-align: middle;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-appearance: button;
}

