body{
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    font-family: 'PT Sans', sans-serif;
}
.site-login{
    width: 350px;
    margin: 0 auto;
    background-color: #ffffffeb;
    padding: 20px;
    color: #000;
    position: absolute;
    top: 15%;
    left: 38%;
}
label{
    display: block;
    padding-bottom: 5px;
}
h1, h2{
    text-align: center;
    padding: 0;
    margin: 0;
}
.desc{
    text-align: center;
}
.form-control{
    width: calc(100% - 25px);
    padding: 10px;
    background-color:  transparent;
    border: 1px solid #333;
    color: #000;
    outline: 0;
    font-size: 15px;
}
.form-control:focus{
    border: 1px solid #000;
}
.clearfix::after, .clearfix::after {
    content: "";
    clear: both;
    display: table;
}
.btn-login{
    padding: 10px;
    background-color: #ff6b00;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    width: 100px;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
    float: right;

}
.btn-login:hover{
    background-color: #333;
}
#videos-background{
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}
.help-block-error{
    color: red;
    margin: 0;
    padding: 2px 0px;
}
.field-loginform-rememberme{
    width: 50%;
    float: left;
    padding-top: 5px;
}
.btn-footer{
    padding-top: 20px;
}
.logo{
    text-align: center;
}
.logo img {
    width: 180px;
}
.forgot{
    font-size: 13px;
    color: #333;
}

/*loading*/

#loading-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
}

#loading-text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #999;
  width: 100px;
  height: 30px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 20px;
}

#loading-content {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 3px solid #F00;
}

#loading-content:after {
  content: "";
  position: absolute;
  border: 3px solid #0F0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

#loading-content:before {
  content: "";
  position: absolute;
  border: 3px solid #00F;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#loading-content {
  border: 3px solid transparent;
  border-top-color: #4D658D;
  border-bottom-color: #4D658D;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

#loading-content:before {
  border: 3px solid transparent;
  border-top-color: #D4CC6A;
  border-bottom-color: #D4CC6A;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
    -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
  animation: loader 3s linear infinite;
}

#loading-content:after {
  border: 3px solid transparent;
  border-top-color: #84417C;
  border-bottom-color: #84417C;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
    -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

@-webkit-keyframes loaders {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#content-wrapper {
  color: #FFF;
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  height: 100%;
}

#header
{
  width: 800px;
  margin: 0 auto;
  text-align: center;
  height: 100px;
  background-color: #666;
}

#content
{
  width: 800px;
  height: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: #888;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {...}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {
    .site-login{
        width: 250px;
        left: 26%;
    }
    .logo img {
        width: 150px;
    }
    .desc {
        text-align: center;
        font-size: 13px;
    }
    .help-block-error{
        margin: 0;
        padding: 2px 0px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
    .site-login{
        width: 250px;
        left: 31%;
    }
    .logo img {
        width: 150px;
    }
    .desc {
        text-align: center;
        font-size: 13px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (max-width: 992px) {
    .site-login{
        width: 300px;
        left: 34%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}
