/*****************globals*************/
* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body, html {
  font-family: 'open sans', Arial;
  overflow-x: hidden;
  background-color: #000000;
  color: #000000;
  height: 100%;
  margin: 0;
}
.bg {
  background-image: url("../images/bg.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.login {
  min-width: 300px;
  width: auto;
  margin: 0px auto;
  margin-left: auto;
  margin-right: auto;
  background-color: #d9d9d9;
  font-size: 1.3rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); }
  .login-1--header {
    background-color: #000000; }
  .login-1 .arrow-down {
    border-top: 20px solid #000000; }
  .login-1 .input-group-addon {
    background-color: #000000; }
  .login-1 .btn-default {
    background-color: #000000; }
.login .btn-default:hover {
  background-color: #cc0000;
  color: #ffffff;
    transition: background-color 0.2s;
}
  .login-1 .login--footer__text:first-of-type {
    border-top: 1px dotted #444; }

  .login--header {
    padding: .7em 0;
    color: #ffffff;
    position: relative; }
    .login--header h3 {
      text-transform: UPPERCASE; }
  .login--form {
    padding: 40px 20px; }
    .login--form__input-area {
      width: 100%; }
  .login--footer {
    padding: 0 20px 20px 20px; }
    .login--footer__text:first-of-type {
      padding-top: 10px; }
  .login .btn {
    border: none;
    border-radius: 0;
    display: block;
    width: 100%;
    text-transform: UPPERCASE;
    color: #ffffff; }

/***********utility************/
.arrow-down {
  z-index: 999;
  border: 20px solid transparent;
  position: absolute;
  margin: 0 auto;
  top: 100%;
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); }

.form-control {
  height: auto;
  padding: .7em;
  background-color: #efefef; }

input.form-control, span.input-group-addon {
  border-radius: 0;
  border: none; }

span.input-group-addon {
  color: #ffffff;
  font-size: 1.8em;
  width: 14%; }

span.icon {
  display: inline-block !important; }
  span.icon-small {
    font-size: 1.8em;
    line-height: 1.9em;
    width: 2em;
    text-align: center; }
  span.icon-medium {
    font-size: 2.5em;
    line-height: 1.9em;
    width: 2em;
    text-align: center; }

.login--header .icon {
  border: 2px solid #fff;
  border-radius: 50%; }

.login--form__input-area,
.login--footer__text,
.login--footer__social-buttons {
  margin-bottom: 20px; }

.btn-default {
  padding: 1em; }

span.icon {
  color: #fff; }
  .icon-fb {
    background-color: #0069e0; }
  .icon-tw {
    background-color: #8accff; }
  .icon-gp {
    background-color: #c22a00; }

a {
  color: inherit; }
  a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted #444; }

.checkbox-label {
  position: relative;
  padding-left: 30px;
  vertical-align: middle; }

input[type="checkbox"] {
  visibility: hidden; }

.checkgraph {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #ccc;
  left: 0; }

.checkgraph:before {
  max-width: 0px;
  display: block;
  overflow: hidden;
  line-height: 30px;
  text-align: center;
  font-size: 1.7em; }

input:checked ~ .checkgraph:before {
  max-width: 30px;
  -webkit-animation-name: check;
          animation-name: check;
  -webkit-animation-duration: .3s;
          animation-duration: .3s; }

@-webkit-keyframes check {
  0% {
    max-width: 0; }
  100% {
    max-width: 30px; } }

@keyframes check {
  0% {
    max-width: 0; }
  100% {
    max-width: 30px; } }