@font-face {
  font-family: effra;
  src: url("/assets/fonts/effra-regular-webfont.ttf"),
    url("/assets/fonts/effra-regular-webfont.otf"),
    url("/assets/fonts/effra-regular-webfont.woff"),
    url("/assets/fonts/effra-regular-webfont.eot"); /* IE9 */
}

html,
body {
  height: 100%;
  width: 100%;

  font-family: "Arial", sans-serif;
}

#container {
  background: #4f4f4f; /* Old browsers */
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    #4f4f4f 0%,
    #333333 100%
  ); /* FF3.6+ */
  background: -webkit-gradient(
    radial,
    center center,
    0px,
    center center,
    100%,
    color-stop(0%, #4f4f4f),
    color-stop(100%, #333333)
  ); /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    #4f4f4f 0%,
    #333333 100%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-radial-gradient(
    center,
    ellipse cover,
    #4f4f4f 0%,
    #333333 100%
  ); /* Opera 12+ */
  background: -ms-radial-gradient(
    center,
    ellipse cover,
    #4f4f4f 0%,
    #333333 100%
  ); /* IE10+ */
  background: radial-gradient(
    ellipse at center,
    #4f4f4f 0%,
    #333333 100%
  ); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f4f4f', endColorstr='#333333',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

  position: relative;
  width: 100%;
  height: 100%;
}

header {
  background: url("/assets/images/bg_header.png") repeat-x;
  box-shadow: 0 0 20px 0px black;
  -moz-box-shadow: 0 0 20px 0px black;
  -ms-box-shadow: 0 0 20px 0px black;
  -webkit-box-shadow: 0 0 20px 0px black;
  height: 47px;
}

header img {
  margin: 15px 0 0 10px;
}

footer {
  height: 23px;
  background-color: black;
  width: 100%;
  text-align: center;
  color: #595959;
  font-size: 10px;
  position: absolute;
  bottom: 0;
  line-height: 23px;
  font-family: "effra", serif;
}

/*-------------------------------------------------LOGIN---------------------------------------*/

#login_container {
  position: relative;
  top: 50%;
  left: 50%;
  margin-top: -158px;
  margin-left: -290px;
  width: 480px;
  height: 235px;
  background-color: #171717;
  border-radius: 5px;
  -webkit-box-shadow: 5px 8px 20px 3px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 5px 8px 20px 3px rgba(0, 0, 0, 0.8);
  box-shadow: 5px 8px 20px 3px rgba(0, 0, 0, 0.8);
  position: relative;
}

#login_container p {
  font-size: 16px;
  color: white;
  margin-left: 10px;
  margin-bottom: 2px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

#login_container span {
  position: absolute;
  right: 12px;
  top: 15px;
  font-size: 11px;
  color: white;
}

#login {
  width: 460px;
  height: 145px;
  margin-left: 10px;
  background: -moz-linear-gradient(
    top,
    #c1c1c1 0%,
    #e7e7e7 38%,
    #e7e7e7 38%,
    #fefefe 100%
  ); /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #c1c1c1),
    color-stop(38%, #e7e7e7),
    color-stop(38%, #e7e7e7),
    color-stop(100%, #fefefe)
  ); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    #c1c1c1 0%,
    #e7e7e7 38%,
    #e7e7e7 38%,
    #fefefe 100%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    #c1c1c1 0%,
    #e7e7e7 38%,
    #e7e7e7 38%,
    #fefefe 100%
  ); /* Opera 11.10+ */
  background: -ms-linear-gradient(
    top,
    #c1c1c1 0%,
    #e7e7e7 38%,
    #e7e7e7 38%,
    #fefefe 100%
  ); /* IE10+ */
  background: linear-gradient(
    to bottom,
    #c1c1c1 0%,
    #e7e7e7 38%,
    #e7e7e7 38%,
    #fefefe 100%
  ); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c1c1c1', endColorstr='#fefefe',GradientType=0 ); /* IE6-9 */

  padding-top: 30px;
}

#login label {
  display: inline-block;
  margin-right: 15px;
  margin-left: 20px;
  color: #333333;
  width: 75px;
  font-weight: bold;
}

#login p:first-child {
  margin-top: 25px;
}

#recuperar_pass {
  cursor: pointer;
  text-decoration: underline;
  margin-top: 12px;
  margin-left: 20px;
  width: 145px;
  font-size: 15px;
  color: #333;
}

#recuperar_pass:hover {
  color: #555;
}

#login input[type="text"],
#login input[type="password"] {
  width: 314px;
  height: 24px;
  outline-color: #999;
  border: 1px solid #999;
  resize: none;
  margin-bottom: 20px;
}

#submeter {
  margin-right: 25px;
  margin-top: -25px;
  background-color: black;
  color: #ccc;
  padding: 7px 20px 5px 20px;
  float: right;
  width: 113px;
  font-weight: normal;
  font-size: 14px;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  transition-duration: 0.5s;
  transition-property: background-color;
  border: none;
  position: relative;
}

#submeter:hover {
  background-color: #333;
}

#submeter:active {
  top: 1px;
}
