body {
  background: url(../../images/background/login.jpg) no-repeat center center fixed;
  -webkit-background-size: cover; /* For WebKit*/
  -moz-background-size: cover;    /* Mozilla*/
  -o-background-size: cover;      /* Opera*/
  background-size: cover;
}
#content-wrapper {
  height: 100%;
  min-height: 100%;
  width: 400px;
  margin: auto;
  position: relative;
  background-image: url(../../images/layout/background-trans-75.png);
}
#content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -200px;
}
#login-box {
  text-align: center;
  width: 400px;
}
#login-box input[type=text],
#login-box input[type=password]{
  width: 200px;
  padding: 5px;
  border: 1px solid #ccc;
  color: white;
  background-color: black;
}
#login-box input[type=submit] {
  padding: 5px;
  width: 200px;
  margin: 10px;
  text-align: center;
}
#login-box #warning-box {
  display: none;
  position: absolute;
  left: 50%;
  margin-left: -100px;
  width: 200px;
  height: auto;
  padding: 10px 0;
  background-color: #ffe;
  border: 1px yellow solid;
  top: 200px;
  cursor: pointer;
}
#login-box #warning-box-close {
  position: absolute;
  right: 5px;
  top:5px;
  color: #bbb;
}
#browser-warning {
  width: 80%;
  padding: 10px;
  border: 3px solid #fa8133;
  background-color: rgb(255, 248, 184);
  margin: auto;
  display: none;
}