* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}

body {
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    background-color: #0f0f0f;
    position: relative;
    z-index: 0;
    padding: 0; 
    overflow: hidden;
}

.footer-copyright {
    color: var(--second);
    font-size: 12px;
}

#esq-senha {
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
}
#esq-senha:hover {
    color: var(--red);
}

.div-logo {
    margin: 0 auto;
    position: relative;
}

.logo {
    display: block;
    margin: 0 auto;
}

.title-login {
    font-size:14px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--white);
}

/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

input:focus {
    border-color: transparent !important;
}

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: var(--second);}
input:-moz-placeholder { color: var(--second);}
input::-moz-placeholder { color: var(--second);}
input:-ms-input-placeholder { color: var(--second);}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
    .txt1 {
        font-size: 13px;
        color: #666666;
        line-height: 1.5;
    }

    .txt2 {
        font-size: 13px;
        color: #333333;
        line-height: 1.5;
    }

    /*//////////////////////////////////////////////////////////////////
    [ login ]*/

    .limiter {
        width: 100%;
        margin: 0 auto;
    }

    .container-login {
        width: 100%;  
        min-height: 80vh;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 15px;
        background: #0f0f0f;
        overflow: hidden;
    }

    .wrap-login {
        width: 390px;
        background: var(--primary);
        border-radius: 10px;
        overflow: hidden;
        padding: 33px 55px 33px 55px;

        box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    }


    /*------------------------------------------------------------------
    [ Form ]*/

    .login-form {
        width: 100%;
    }

    .login-form-title {
        display: block;
        font-size: 30px;
        color: #333333;
        line-height: 1.2;
        text-align: center;
    }
    .login-form-title i {
        font-size: 60px;
    }

    /*------------------------------------------------------------------
    [ Input ]*/

    .wrap-input {
        width: 100%;
        position: relative;
        border-bottom: 2px solid var(--second);
        margin-bottom: 37px;
    }

    .login-input {
        font-size: 15px;
        color: var(--second);
        line-height: 1.2;

        display: block;
        width: 100%;
        height: 45px;
        background: transparent;
        padding: 0 5px;
    }

    /*---------------------------------------------*/ 
    .focus-input {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .focus-input::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;

        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;

        background: var(--white);
    }

    .focus-input::after {
        font-size: 12px;
        color: var(--second);
        line-height: 1.2;

        content: attr(data-placeholder);
        display: block;
        width: 100%;
        position: absolute;
        top: 16px;
        left: 0px;
        padding-left: 5px;

        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

    .login-input:focus + .focus-input::after {
        top: -15px;
    }

    .login-input:focus + .focus-input::before {
        width: 100%;
    }

    .has-val.login-input + .focus-input::after {
        top: -15px;
    }

    .has-val.login-input + .focus-input::before {
        width: 100%;
    }

    /*---------------------------------------------*/
    .btn-show-pass {
        font-size: 20px;
        color: var(--third);

        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        position: absolute;
        height: 100%;
        top: 0;
        right: 0;
        padding-right: 5px;
        cursor: pointer;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

    .btn-show-pass:hover {
        color: var(--white);
    }

    .btn-show-pass.active {
        color: var(--third);
    }

    .form-group {
        display: flex;
        position: relative;
    }

    .btn-show-pass-1 {
        position: absolute;
        right: 15px;
        top: 60%;
        transform: translateY(-50%);
    }
    .btn-show-pass-1 i {
        font-size: 19px;
        cursor: pointer;
        color: var(--third);
    }
    .btn-show-pass-1 i:hover {
        color: var(--primary);
    }

    /*------------------------------------------------------------------
    [ Button ]*/
    .container-login-form-btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 13px;
    }

    .wrap-login-form-btn {
        width: 100%;
        display: block;
        position: relative;
        z-index: 1;
        border-radius: 25px;
        overflow: hidden;
        margin: 0 auto;
    }

    .login-form-bgbtn {
        position: absolute;
        z-index: -1;
        width: 300%;
        height: 100%;
        background: var(--third);
        top: 0;
        left: -100%;

        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        -moz-transition: all 0.4s;
        transition: all 0.4s;
    }

    .login-form-btn {
        font-size: 15px;
        color: #fff;
        line-height: 1.2;
        text-transform: lowercase;

        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        width: 100%;
        height: 50px;
    }

    .wrap-login-form-btn:hover .login-form-bgbtn {
        left: 0;
    }


    /*------------------------------------------------------------------
    [ Responsive ]*/

    @media (max-width: 576px) {
        .wrap-login {
            padding: 33px 15px 33px 15px;
            margin: 0 10px;
        }
        .title-login {
            font-size: 12px;
        }
    }
