@charset "utf-8";
@viewport {
  width: extend-to-zoom;
  zoom: 1;
}
/* ****************************************************************************
									reset
**************************************************************************** */
*,
html,
body {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  background-color: rgba(230, 41, 20, 1);
  color: rgba(165, 52, 28, 1);
  font-family: "Times New Roman", Times, serif;
  font-size: 13pt;
  font-weight: normal;
  line-height: 17pt;
}
a,
a:visited {
  color: rgba(165, 52, 28, 1);
  font-family: "Times New Roman", Times, serif;
  font-size: 13pt;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
a:hover {
  text-decoration: underline;
}
/* ****************************************************************************
								struture
**************************************************************************** */
#wrapper {
  min-width: 600px;
  width: 100%;
  min-height: 600px;
  height: 100%;
  position: relative;
}
#dialog {
  background-color: rgba(240, 240, 240, 1);
  width: 400px;
  height: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -175px 0 0 -200px;
  overflow: hidden;
  border: rgba(240, 240, 240, 1) 1px solid;
  border-radius: 20px;
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.25);
}
h1 {
  background-color: rgba(165, 52, 28, 1);
  height: 50px;
  padding: 0 20px;
  color: rgba(240, 240, 240, 1);
  font-size: 19pt;
  line-height: 48px;
  box-shadow: 2px 0 3px 1px rgba(0, 0, 0, 0.25);
}
#error,
#success,
#info {
  width: 300px;
  position: absolute;
  left: 50%;
  margin-left: -170px;
  padding: 10px 20px;
  z-index: 1000;
}
#error {
  background-color: rgba(170, 34, 34, 0.9);
  color: rgba(240, 240, 240, 1);
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.25);
}
#success {
  background-color: rgba(204, 255, 204, 0.9);
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.25);
}
#info {
  background-color: rgba(84, 190, 255, 0.9);
  color: rgba(240, 240, 240, 1);
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.25);
}
form {
  position: relative;
  padding: 20px;
}
#login-username-div,
#login-password-div,
#login-remember-me-div {
  margin-bottom: 10px;
}
#forgot-email-div {
  margin: 30px 0;
}
label {
  display: inline-block;
}
#login-username-div label,
#login-password-div label {
  width: 80px;
  padding-right: 10px;
  text-align: right;
}
#forgot-email-div label {
  width: 60px;
  padding-right: 10px;
  text-align: right;
}
input[type="text"],
input[type="password"] {
  width: 250px;
  height: 18px;
  padding: 4px;
  border: rgba(78, 92, 40, 1) 1px solid;
}
#login-remember-me-div {
  padding-left: 5px;
}
#login-remember-me-div label {
  padding-left: 5px;
}
#login-submit-div,
#forgot-submit-div {
  padding-top: 10px;
  text-align: center;
}
input[type="submit"] {
  background-image: linear-gradient(
    to top,
    rgba(230, 41, 20, 1) 0%,
    rgba(165, 52, 28, 1) 50%,
    rgba(230, 41, 20, 1) 100%
  );
  height: 40px;
  padding: 0 20px;
  font-size: 13pt;
  font-weight: bold;
  color: rgba(240, 240, 240, 1);
  border: rgba(240, 240, 240, 1) 1px solid;
  border-radius: 10px;
  box-shadow: 0 0 3px 1px rgba(25, 25, 25, 0.25);
}
input[type="submit"]:hover {
  background-image: linear-gradient(
    to top,
    rgba(230, 230, 230, 1) 0%,
    rgba(200, 200, 200, 1) 50%,
    rgba(230, 230, 230, 1) 100%
  );
  cursor: pointer;
  color: rgba(78, 92, 40, 1);
  border: rgba(78, 92, 40, 1) 1px solid;
}
#login-submit-div span,
#forgot-submit-div span {
  display: inline-block;
  margin-left: 10px;
}
