/* ---------- GENERAL ---------- */
* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}
body {
  background:  #6f6f6f ;
  color: #999;
  font: 400 16px/1.5em sans-serif;
  margin: 0;
}
h3 {
  margin: 0;
}
a {
  color: #999;
  text-decoration: none;
}
a:hover {
  color: #696969;
}
fieldset {
  border: none;
  margin: 0;
}
input {
  border: none;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  -webkit-appearance: none;
}
input:focus {
  outline: none;
}
input[type="submit"] {
  cursor: pointer;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: ' ';
  display: table;
}
.clearfix:after {
  clear: both;
}
.container {
  left: 50%;
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
/* ---------- LOGIN-FORM ---------- */
#login-form {
  width: 350px;
  margin: 0 auto;
}
#login-form h3 {
  background-color: #22527b;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 14px;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
}
#login-form fieldset {
  background: #fff;
  border-radius: 0 0 5px 5px;
  padding: 20px;
  position: relative;
}
#login-form fieldset:before {
  background-color: #fff;
  content: "";
  height: 8px;
  left: 50%;
  margin: -4px 0 0 -4px;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
}
#login-form input {
  font-size: 14px;
}
#login-form input[type="text"],
#login-form input[type="password"], 
#login-form select{
  border: 1px solid #f1f1f1;
  padding: 12px 10px;
  width: 100%;
}
#login-form input[type="text"] {
  border-radius: 3px 3px 0 0;
}
 #login-form  select {
  border-top: none;
  border-radius: 0px 0px 3px 3px;
}
#login-form input[type="button"] {
  background: #696969;
  border-radius: 3px;
  color: #22527b;
  float: right;
  font-weight: bold;
  margin-top: 20px;
  padding: 12px 20px;
}
#login-form input[type="button"]:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #f1f1f1;
  float: right;
  font-weight: bold;
  margin-top: 20px;
  padding: 12px 20px;
  outline: none;
  transition: all 1s;
}
#login-form footer {
  font-size: 12px;
  margin-top: 16px;
}