body{
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: white;
    overflow: hidden;
    position: fixed;
    z-index: 20;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity .5s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active em versões anteriores a 2.1.8 */ {
    opacity: 0;
}

#box-login {
    width: 600px;
    height: 450px;
    position: relative;
    background-color: white;
    -webkit-box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: black!important;
}

.box-logo {
    flex-grow: 1;
    height: 450px;
    padding: 10px;
    position: relative;
    background-color: #08152f;
    color: #08152f!important;
    display: flex;
    justify-content: center;
    align-content: center;
}

.box-logo .V {
    max-width: 150px;
    margin-top:-40px;
}
.box-logo .H {
    max-width: 200px;
    display: none;
}

.box-logo .V2 {
    max-width: 200px;
    margin-top: 68%;
    height: 180px;
}

.conteudo {
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 40px;
    position: relative;
}

@media (max-width: 510px) {
    #box-login {
        flex-direction: column;
        height: 100%;
    }
    .box-logo {
        width: 100%;
        max-height: 250px;
    }
    .box-logo .V {
        display: none;
    }
    .box-logo .H {
        display: block;
    }
}

@media (max-width: 315px) {
    .conteudo {
        padding: 20px;
        padding-bottom: 40px;
        padding-top: 30px;
    }
}

.conteudo .input-custom{
    margin-bottom: 10px;
}

.conteudo a{
    cursor:pointer;
    transition-duration: .2s;
}
.conteudo a:hover{
    color:rgb(93, 93, 93);
}

.voltar {
    width: 100%;
    margin-top: 10px;
    text-align: center;
}
.esqueceu-senha{
    width: 100%;
    margin-bottom: 10px;
    text-align: right;
}



.conteudo .titulo{
    color: black;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.error {
    width: 100%;
    color: rgba(0,0,0, 0.6);
    text-align: center;
    margin-bottom: 10px;
}
.success {
    width: 100%;
    color: rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-bottom: 10px;
}
/* .titulo::after{
    content: "";
    background-color: #83fe03;
    height: 5px;
    width: 50px;
    display: block;
} */

.border-button {
    margin-top: 10px;
    border-radius: 4px;
    background: #7dcc00;
    padding:3px;
}

.margin {
    margin-top: 15px;
    color: black!important;
    font-weight: 700!important;
    background: rgba(255, 255, 255, 0)!important;
    transition-duration: .5s;
}

.margin:hover {
    /* color: white!important; */
    background: white!important;
}

shape{
    position: absolute;
    width: 110%;
    height: 150px;
    z-index: 20;
    background-color: #7dcc00;
    bottom:-80px;
    right: 20;
    transform: rotate(-5deg);
    -webkit-box-shadow: 6px 0px 15px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 6px 0px 15px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 6px 0px 15px 0 rgba(0, 0, 0, 0.3);
}
