﻿html, body {
    height: 100%;
    background-color: #FFF
}

.bg-logo {
    background-color: var(--primary-color);
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-logo img {
    height: 100px;
}

.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#formLogin i {
    font-size: 20px
}
/*
.input-field label:not(.label-icon).active {
    font-weight: 500;
    font-size: 1.1rem;
}*/

.btn-login {
    border-radius: 4px;
    background-color: var(--primary-color);
}

.dialog {
    display: block;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: #B0BEC5;
}

#title-app {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 42px;
    color: #263238;
    text-transform: uppercase;
}

#title {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 38px;
    color: #263238;
}

.actions-login {
    display: flex;
    justify-content: space-between;
}

.link-register {
    text-align: center;
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.alert-success {
    background: #64b97726;
    border-radius: 4px;
    margin-bottom: 12px;
    text-align: center;
    padding: 12px;
    color: var(--color-status-green);
}

.text-logo {
    color: #FFF;
    font-size: 50px;
}

    .text-logo #enem {
        text-align: right;
        line-height: 32px;
        font-size: 36px;
    }

    .text-logo #consulta-facil {
        line-height: 46px;
    }

.error-msg {
    background: #ff00001f;
    border-radius: 4px;
    margin-bottom: 12px;
    text-align: center;
}

    .error-msg li:first-child {
        padding-top: 12px;
    }

    .error-msg li:last-child {
        padding-bottom: 12px;
    }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.row .col.s10 {
    margin-top: inherit;
}
/* Configura o stroke invisível e prepara para animar */
#logo-kivo .cls-1 {
    fill: #fff; /* cor final do fill */
    fill-opacity: 0; /* começa invisível */
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 1.5s forwards ease-in-out;
    transition: fill-opacity 1s ease-in-out; /* suaviza opacidade do fill */
}

/* animação do contorno */
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

/* Após o contorno, aumentar a opacidade para mostrar o fill suavemente */
#logo-kivo.drawn .cls-1 {
    fill-opacity: 1;
}

#resetPassword {
    width: 100%;
}

@media only screen and (min-width:600px) {
    main {
        display: flex;
        height: 100%;
        padding: 0
    }

    .bg-logo {
        flex-direction: column;
    }

        .bg-logo img,
        .bg-logo #logo-kivo
        {
            height: 210px;
            margin-top: 12px;
        }

    /*.bg-logo img {
        position: absolute;
        top: 20px;
        left: 20px;
        height: 38px;
    }*/

    .login-image-wrapper {
        width: 250px;
        max-width: 80%;
        margin-top: 12px;
    }
}

@media only screen and (max-width:900px) {
    #divFormularioLogin {
        width: 301px;
    }
}

@media only screen and (max-width:600px) {
    main {
        padding: 0;
        height: 100%;
    }
    /*#divFormularioLogin {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        transform: translate(0%,0%);
        position: static;
    }*/

    .bg-logo img,
    .bg-logo #logo-kivo {
        width: 220px;
        height: auto;
    }

    .bg-logo {
        height: 240px;
    }

    /*#box {
        height: auto;
    }

    #boxForm span {
        font-size: 32px;
        padding-left: 10px;
    }

    #go {
        width: 54%;
    }

    #boxForm #italico {
        margin-bottom: 20px;
        color: #cfcfcf;
    }

    input[type=password].invalid:not(.browser-default),
    input[type=password].invalid:not(.browser-default):focus,
    input[type=password]:not(.browser-default):not([readonly]),
    input[type=text].invalid:not(.browser-default),
    input[type=text].invalid:not(.browser-default):focus,
    input[type=text]:not(.browser-default):not([readonly]) {
        margin-bottom: 0;
        background-color: #fff;
    }

    div#boxForm {
        text-align: center;
    }

    #divInputLembre {
        text-align: left;
        padding-left: 10px;
        padding-top: 10px;
    }*/
}