.login-bg {
  background: rgba(255, 255, 255, 0);
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background: -ms-linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background: -o-linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-color: #eff0f3;
  background-repeat: no-repeat;
  height: 100%;
}

body {
  background-color: #F3F3F6;
}

.header {
  background: #2c3742;
  box-shadow: inset rgba(255, 255, 255, 0.3) 0 1px 0, inset rgba(0, 0, 0, 0.22) 0 -1px 0, rgba(0, 0, 0, 0.14) 0 1px 2px;
  width: 100%;
  height: 75px;
  text-align: center;
  padding-top: 28px;
}

.login-wrapper {
  position: absolute;
  left: 0;
  right: 0;
}

  .login-wrapper h6 {
    text-align: center;
  }

  .login-wrapper .logo {
    margin-bottom: 45px;
    position: relative;
    left: -2px;
    -webkit-filter: invert(100%);
  }

  .login-wrapper .box {
    margin: 0 auto;
    padding: 35px 0 30px;
    float: none;
    width: 400px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;
    -ms-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;
    -o-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;
    box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.35) 0 0 1px;
    background: #fff;
    border-radius: 11px;
  }

    .login-wrapper .box .content-wrap {
      width: 82%;
      margin: 0 auto;
    }

    .login-wrapper .box h6 {
      margin: 30px 0;
      font-size: 24px;
      font-weight: 500;
    }

    .login-wrapper .box input[type="text"],
    .login-wrapper .box input[type="password"],
    .login-wrapper .box input[type="email"] {
      font-size: 15px;
      height: 45px;
      margin-bottom: 10px;
      border-color: #b2bfc7;
      padding-left: 12px;
    }

      .login-wrapper .box input[type="text"]:focus,
      .login-wrapper .box input[type="password"]:focus,
      .login-wrapper .box input[type="email"]:focus{
        border: 1px solid #28a0e5;
        outline: none;
        -webkit-box-shadow: inset 0 1px 2px #ddd,0px 0 5px #28a0e5;
        -moz-box-shadow: inset 0 1px 2px #ddd,0px 0 5px #28a0e5;
        -ms-box-shadow: inset 0 1px 2px #ddd,0px 0 5px #28a0e5;
        -o-box-shadow: inset 0 1px 2px #ddd,0px 0 5px #28a0e5;
        box-shadow: inset 0 1px 2px #dddddd, 0px 0 5px #28a0e5;
      }

    .login-wrapper .box input[type="password"] {
      margin-bottom: 10px;
    }

    .login-wrapper .box input:-moz-placeholder {
      color: #9ba8b6;
      font-size: 14px;
      letter-spacing: 0px;
      font-style: italic;
    }

    .login-wrapper .box input:-ms-input-placeholder {
      color: #9ba8b6;
      font-style: italic;
      letter-spacing: 0px;
      font-size: 14px;
    }

    .login-wrapper .box input::-webkit-input-placeholder {
      color: #9ba8b6;
      font-style: italic;
      letter-spacing: 0px;
      font-size: 14px;
    }

    .login-wrapper .box .action {
      border-top: 1px solid #d3d7db;
      margin: 0px -36px;
      position: relative;
      top: 30px;
      border-radius: 0px 0px 7px 7px;
      padding: 20px 0px 10px;
    }

    .login-wrapper .box .signup {
      font-size: 13px;
      padding: 7px 25px;
      border-radius: 5px;
    }

  .login-wrapper .already {
    margin: 0 auto;
    float: none;
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
  }

    .login-wrapper .already p {
      display: inline-block;
      color: #222;
    }

    .login-wrapper .already a {
      color: #222;
      margin-left: 7px;
      border-bottom: 1px solid;
      transition: all .1s linear;
      -moz-transition: all .1s linear;
      /* Firefox 4 */
      -webkit-transition: all .1s linear;
      /* Safari and Chrome */
      -o-transition: all .1s linear;
      /* Opera */
    }

      .login-wrapper .already a:hover {
        text-decoration: none;
        color: #000;
        border-bottom-color: #000;
      }

/* responsive */
@media (max-width: 767px) {
  .login-wrapper .box {
    width: 350px;
  }

    .login-wrapper .box .action {
      margin: 0px -31px;
    }
}

@media (max-width: 480px) {
  .login-wrapper .box {
    width: 90%;
  }
}

#logo h1 {
  color: #FFFFFF;
  float: none;
  font-family: 'Lily Script One';
  font-size: 40px;
  font-weight: 300;
  margin-top: 0;
  position: relative;
  text-align: center;
  top: -18px;
}

#logo a {
  text-decoration: none;
}


.texto-cadastro {
  font-size: 13px;
  margin-bottom: 17px;
  text-align: left;
}

.input-recoverpass {
  border: 1px solid #CCCCCC !important;
  border-left: 0px !important;
  width: 45% !important;
  margin-right: 6px;
  border-radius: 0 4px 4px 0 !important;
}

.btn-acao-senha {
  margin-right: 1px;
}

.form-control::-webkit-input-placeholder {
  color: black;
}

.form-control:-moz-placeholder { /* Firefox 18- */
  color: black;
}

.form-control::-moz-placeholder { /* Firefox 19+ */
  color: black;
}

.form-control:-ms-input-placeholder {
  color: black;
}

.login-wrapper .box.redirecionamento {
  background: none repeat scroll 0 0 #FFFFFF;
  border-radius: 6px 6px 6px 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.35);
  float: none;
  margin: 0 auto;
  padding: 30px 0 4px;
  width: 400px;
}

#lnkVerificar.disabled {
  background-image: url("../../img/app/360-primary.gif");
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 30px;
}

.ValidMessage {
  display: none;
}

.login-email {
  border-radius: 3px 3px 0 0;
}

.senha {
  border-radius: 0 0 3px 3px;
  border-top: none;
  margin-top: -15px;
}

#usuario {
  border-bottom: 1px solid #F3F3F6;
  padding-bottom: 5px;
}

  #usuario::-webkit-input-placeholder,
  #senha::-webkit-input-placeholder,
  #repitaSenha::-webkit-input-placeholder,
  .login-email::-webkit-input-placeholder,
  .senha::-webkit-input-placeholder {
    color: #8d9498;
    letter-spacing: 0;
    font-style: initial !important;
  }

  #usuario::-moz-placeholder,
  #senha::-moz-placeholder,
  #repitaSenha::-moz-placeholder,
  .login-email::-webkit-input-placeholder,
  .senha::-webkit-input-placeholder {
    color: #8d9498;
    letter-spacing: 0;
    font-style: initial !important;
  }

  #usuario:-ms-input-placeholder,
  #senha:-ms-input-placeholder,
  #repitaSenha:-ms-input-placeholder,
  .login-email::-webkit-input-placeholder,
  .senha::-webkit-input-placeholder {
    color: #8d9498;
    letter-spacing: 0;
    font-style: initial !important;
  }

#senha {
  border-top: none;
}


  #usuario:focus,
  #senha:focus {
    border: 1px solid #28A0E5;
    box-shadow: none;
  }

.btnEntrar {
  padding: 0 0 5px 0;
}

.primeiro-acesso {
  text-align: center;
  background: none;
}

#signup-rotate .rotate-container {
  -webkit-perspective: 2000px;
  -moz-perspective: 2000px;
  -ms-perspective: 2000px;
  -o-perspective: 2000px;
  perspective: 2000px;
  margin: 0 auto;
}

#signup-rotate .wrappers {
  min-height: 445px;
  -webkit-transition: -webkit-transform 1s;
  -moz-transition: -moz-transform 1s;
  -ms-transition: -ms-transform 1s;
  -o-transition: -o-transform 1s;
  transition: transform 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

  #signup-rotate .wrappers.flipped {
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }

  #signup-rotate .wrappers.flipped-ended .front {
    z-index: 1;
  }

  #signup-rotate .wrappers.flipped-ended .back {
    z-index: 3;
  }

#signup-rotate .wrapper {
  margin: 0 auto;
  background: #fff;
  border-bottom: 6px solid #43acd9;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  /* These are commented out because they break the rotation on IE */
  /*-ms-backface-visibility: hidden;*/
  /*backface-visibility: hidden;*/
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

  #signup-rotate .wrapper.front {
    z-index: 3;
  }

  #signup-rotate .wrapper.back {
    z-index: 1;
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }

#signup-rotate .change-view {
  display: none;
}

  #signup-rotate .change-view.active {
    display: block;
  }

  #signup-rotate .change-view a {
    color: #fff;
    text-decoration: underline;
  }

  #signup-rotate .change-view .popover-content {
    color: #000;
    font-size: 17px;
    font-weight: 400;
  }


.btnCancelar {
  padding: 10px;
}

#novasenha #senha {
  border-top: 1px solid #B2BFC7;
}

#novasenha #usuario {
  border-bottom: 1px solid #B2BFC7;
}

.botao-salvar-senha {
}

@-moz-keyframes move-is-waiting-stripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 30px 0px;
  }
}

@-webkit-keyframes move-is-waiting-stripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 30px 0px;
  }
}

@-o-keyframes move-is-waiting-stripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 30px 0px;
  }
}

@-ms-keyframes move-is-waiting-stripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 30px 0px;
  }
}

@keyframes move-is-waiting-stripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 30px 0px;
  }
}

input[type=submit].is-waiting, button.is-waiting, .button.is-waiting {
  background-image: -webkit-linear-gradient(-45deg, rgba(0,0,0,0.08) 25%,transparent 25%,transparent 50%,rgba(0,0,0,0.08) 50%,rgba(0,0,0,0.08) 75%,transparent 75%,transparent);
  background-image: -moz-linear-gradient(-45deg, rgba(0,0,0,0.08) 25%,transparent 25%,transparent 50%,rgba(0,0,0,0.08) 50%,rgba(0,0,0,0.08) 75%,transparent 75%,transparent);
  background-image: -o-linear-gradient(-45deg, rgba(0,0,0,0.08) 25%,transparent 25%,transparent 50%,rgba(0,0,0,0.08) 50%,rgba(0,0,0,0.08) 75%,transparent 75%,transparent);
  background-image: linear-gradient(-45deg, rgba(0,0,0,0.08) 25%,transparent 25%,transparent 50%,rgba(0,0,0,0.08) 50%,rgba(0,0,0,0.08) 75%,transparent 75%,transparent);
  -webkit-background-size: 30px 30px;
  -moz-background-size: 30px 30px;
  -o-background-size: 30px 30px;
  background-size: 30px 30px;
  -webkit-animation: move-is-waiting-stripes 0.5s linear infinite;
  -moz-animation: move-is-waiting-stripes 0.5s linear infinite;
  -ms-animation: move-is-waiting-stripes 0.5s linear infinite;
  -o-animation: move-is-waiting-stripes 0.5s linear infinite;
  animation: move-is-waiting-stripes 0.5s linear infinite;
  cursor: wait;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}

.logo-evento {
  margin-bottom: 15px;
  text-align: center;
}
