﻿/*@keyframes fadeDown {
     0% {
        top:-650px;
    }
     40% {
        top:10px;
    }
     80% {
        top:-20px;
    }
     100% {
        top:0px;
    }
} */
body {
    font-family: "Ubuntu", sans-serif;
    background: #fafafa;
}

a:hover, a:focus {
    text-decoration: none !important;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(300px);
    }

    to {
        opacity: 1;
    }
}

@media screen and (min-width: 1200px) {
    .image {
        background: url(../img/image.png) no-repeat;
        width: 600px;
        height: 535px;
        background-size: 85%;
        position: relative;
        animation: fadeInRight 1.5s ease-in-out;
        top: 15px;
    }

    .image-password {
        background: url(../img/security.png) no-repeat;
        width: 600px;
        height: 541px;
        background-size: 85%;
        position: relative;
        animation: fadeInRight 1.5s ease-in-out;
        top: 8rem;
    }

    #button-password .col-md-6 {
        float: left;
    }
}

body {
    font-family: "Ubuntu", sans-serif;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.topo {
    display: none;
}

a {
    color: #ffa129bf;
    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: 0px ​8px 10px 8p;
    color: #cccccc;
}
/* STRUCTURE */
.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    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;
     */
    border-top: 1px solid #dce8f1;
    padding: 15px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    width: 85%;
    margin-left: 8%;
}

@media screen and (max-width: 600px) {
    .row {
        flex-wrap: wrap;
        display: inline-block;
    }

    .icon-input {
        left: 0.2rem !important;
    }

    .icon-eye {
        right: 3rem !important;
    }
}
/* TABS */
h2.inactive {
    color: #cccccc;
}

.navbar.navbar-expand-lg.navbar-light.bg-all.mb-4 {
    display: none;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}
/* FORM TYPOGRAPHY*/
input[type=button], input[type=submit], input[type=reset] {
    background-color: #ffa129;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgb(95 186 233 / 40%);
    box-shadow: 2px 2px 2px 0 #ffa1294d;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 20px 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;
    width: 85%;
    font-weight: bold;
    margin-top: 2rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

    input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
        background-color: #f79415;
    }

    input[type=button]:active, input[type=submit]:active, input[type=reset]: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=email], input[type=text], input[type=password] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 1.2rem 2.7rem;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    width: 97%;
    border: 2px solid #f6f6f6;
    -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=email]:focus, input[type=text]:focus, input[type=password]:focus {
        background-color: #fff;
        border-bottom: 2px solid #f79415;
    }

    input[type=email]:placeholder, input[type=text]:placeholder, input[type=password]:placeholder {
        color: #cccccc;
    }

/* ANIMATIONS */
/* Simple CSS3 Fade-in-down Animation */
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Simple CSS3 Fade-in Animation */
@-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;
    }
/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #f79415;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #a7a6a6;
}

    .underlineHover:hover:after {
        width: 100%;
    }
/* OTHERS */
*:focus {
    outline: none;
}

#icon {
    width: 60%;
}

.logo {
    background: url(../img/logo-renova.png) no-repeat;
    width: 200px;
    height: 112px;
    background-size: 100%;
    align-items: center;
    margin: auto;
}

.form-label {
    margin: 1rem 0rem 0.5rem 3.5rem;
    float: left;
    color: #9f9b9b;
}

.errorInput {
    border-bottom: 2px solid #e9785f;
}

.erro {
    color: #f36546;
    position: absolute;
    right: 4rem;
    font-size: 12px;
    margin-top: 4.5rem;
}

input[type=text]::after {
    content: "Read this -";
}

.icon-input {
    position: absolute;
    z-index: 11;
    margin: 1.6rem 0 0 2.7rem;
    color: #7a7777ab;
    left: 1.7rem;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@-moz-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-10px);
        -moz-transform: translatex(-10px);
        -o-transform: translatex(-10px);
        transform: translatex(-10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translatex(-100px);
        -moz-transform: translatex(-100px);
        -o-transform: translatex(-100px);
        transform: translatex(-100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

.in-left {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-duration: 1s;
    animation-delay: 1s;
}

.icon-eye {
    position: absolute;
    z-index: 11;
    margin: 1.5rem 0 0 0rem;
    color: #7a7777ab;
    right: 5rem;
    cursor: pointer;
}

.page-container {
    min-height: calc(100vh - 140px);
}

.logo-box {
    display: flex;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    padding-bottom: 1rem;
}

.wrapper form {
    padding-top: 25px;
}

footer {
    background-color: #f1f1f1;
}

.text-footer {
    background-color: rgb(233 233 233);
    color: #706d6d !important;
}
