/*!
   * By AOyola 
 */
html {
    background-color: transparent !important;
     background: transparent !important;
}

body {
    font-family: "Poppins", sans-serif;
    height: 100vh;
    background-color: rgba(0,0,0,0) !important;
    background: transparent;
    box-shadow: none;
} 

a {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}

/* STRUCTURE */

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%; 
}
formFooter {
    min-height: 100%;
    /*  padding: 20px;*/
}

.wrapper:hover {
    opacity: 1;
    transition: 1s ease;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    /*background-color: rgba(255, 255, 255, 0.5) !important;*/
    /*background: #fff;*/
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formFooter {
    /*background-color: #f6f6f6;*/
    /*background-color: rgba(255, 255, 255, 0.5) !important;*/
    border-top: 1px solid #dce8f1;
    /*padding: 10px;*/
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 55px 55px;
    color: white;
}



/* TABS */

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}

/* FORM FONT*/

/*input[type=button], input[type=submit], input[type=reset] {*/
.btnLogin {
    /*background-color: #152C46;*/ /*Azul Howden*/
    background-color: #173F35; /*Moss Green*/
    border: none;
    color: white !important;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 15px 5px 15px;
    margin: 20px 20px 10px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

    /*input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {*/
    .btnLogin:hover {
        /*background-color: #4c99f5;*/ /*Azul Howden Claro*/
        background-color: #998542; /*Gold*/
    }

    /*input[type=button]:active, input[type=submit]:active, input[type=reset]:active {*/
    .btnLogin:active {
        -moz-transform: scale(0.95);
        -webkit-transform: scale(0.95);
        -o-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }

/*input[type=text], input[type=password] {*/
.inputLog {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    /*width: 85%;*/
    border: 0.5px solid #494949;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus, input[type=password]:focus {
        background-color: #fff;
        border-bottom: 2px solid #5fbae9;
    }

input[type=text]:placeholder, input[type=password]:placeholder {
        color: #cccccc;
    }
/* ANIMATIONS */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fadeIn.first {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

.fadeIn.second {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

.fadeIn.third {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

.fadeIn.fourth {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    /*background-color:  #002A5E;*/
    background-color: #ffffff;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    /*color: #56baed;*/
    color: #ffffff;
    text-decoration: none;
}

    .underlineHover:hover:after {
        
        width: 100%;
    }

h1 {
    color: #60a0ff;
}

*:focus {
    outline: none;
}

#icon {
    width: 60%;
    max-width: 270px;
    max-height: 54px;
    /*width: 70%;*/

}
/*#powerby {
    width: 70%;
}*/

#certificaciones {
    width: 100%;
}

.bodyImage {
    /*background-image: url('../images/index/index.png');*/
    /*background-image: url('../images/Login/backlogin.png');*/
    /*background-image: url('../images/Login/honda_inspire.jpg');*/
    /*background-image: url('../images/Login/honda_civic.jpg');*/
    background-image: url('../images/Login/honda_civic__zoom.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
}

/* xs */
@media (max-width:767px) {
    .xs-only-text-left {
        text-align: left !important;
    }

    .xs-only-text-right {
        text-align: right !important;
    }

    .xs-only-text-center {
        text-align: center !important;
    }
}

@media only screen {
    .xs-text-left {
        text-align: left !important;
    }

    .xs-text-right {
        text-align: right !important;
    }

    .xs-text-center {
        text-align: center !important;
    }
}

/* sm */
@media only screen and (min-width:768px) and (max-width:991px) {
    .sm-only-text-left {
        text-align: left !important;
    }

    .sm-only-text-right {
        text-align: right !important;
    }

    .sm-only-text-center {
        text-align: center !important;
    }
}

@media only screen and (min-width:768px) {
    .sm-text-left {
        text-align: left !important;
    }

    .sm-text-right {
        text-align: right !important;
    }

    .sm-text-center {
        text-align: center !important;
    }
}

/* md */
@media only screen and (min-width:992px) and (max-width:1199px) {
    .md-only-text-left {
        text-align: left !important;
    }

    .md-only-text-right {
        text-align: right !important;
    }

    .md-only-text-center {
        text-align: center !important;
    }
}

@media only screen and (min-width:992px) {
    .md-text-left {
        text-align: left !important;
    }

    .md-text-right {
        text-align: right !important;
    }

    .md-text-center {
        text-align: center !important;
    }
}

/* lg */
@media (min-width:1200px) {
    .lg-only-text-left {
        text-align: left !important;
    }

    .lg-only-text-right {
        text-align: right !important;
    }

    .lg-only-text-center {
        text-align: center !important;
    }
}

@media only screen and (min-width:1200px) {
    .lg-text-left {
        text-align: left !important;
    }

    .lg-text-right {
        text-align: right !important;
    }

    .lg-text-center {
        text-align: center !important;
    }
}

/*input text*/
*,
:before,
:after {
  box-sizing: border-box;
}

.group {
  position: relative;
  margin: 45px 0;
}

textarea {
  resize: none;
}

input,
textarea {
  background: none;
  color: #c6c6c6;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 320px;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #c6c6c6;
}
input:focus,
textarea:focus {
  outline: none;
}
input:focus ~ label, input:valid ~ label,
textarea:focus ~ label,
textarea:valid ~ label {
  top: -14px;
  font-size: 12px;
  color: #2196F3;
}
input:focus ~ .bar:before,
textarea:focus ~ .bar:before {
  width: 320px;
}

input[type="password"] {
  letter-spacing: 0.3em;
}

label {
  color: #c6c6c6;
  font-size: 16px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 300ms ease all;
}

.bar {
  position: relative;
  display: block;
  width: 320px; 
}
.bar:before {
  content: '';
  height: 2px;
  width: 0;
  bottom: 0px;
  position: absolute;
  background: #2196F3;
  transition: 300ms ease all;
  left: 0%;
}

.btn {
  background: #fff;
  color: #959595;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn:hover {
  color: #8b8b8b;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
}
.btn.btn-link {
  background: #2196F3;
  color: #d3eafd;
}
.btn.btn-link:hover {
  background: #0d8aee;
  color: #deeffd;
}
.btn.btn-submit {
  background: #2196F3;
  color: #bce0fb;
}
.btn.btn-submit:hover {
  background: #0d8aee;
  color: #deeffd;
}
.btn.btn-cancel {
  background: #eee;
}
.btn.btn-cancel:hover {
  background: #e1e1e1;
  color: #8b8b8b;
}

.btn-box {
  text-align: center;
  margin: 50px 0;
}

/*color cuadro*/

.fondlog {
    background-color: rgba(255, 255, 255, 0.7) !important;
}

.btop {
    border-radius: 60px 60px 0px 0px;
    -moz-border-radius: 60px 60px 0px 0px;
    -webkit-border-radius: 60px 60px 0px 0px;
    border: 0px solid #ffffff;
}

.btnrc {
    color: #152C46;
}

