* {
    --cor-background: #ffffff;
    --cor-texto: #646464;
    --cor-primaria: #009bdc;
    --cor-primaria-texto: #ffffff;
}

body {
    background-color: var(--cor-background);
    color: var(--cor-texto);
    font-family: "Nunito";
}

a {
    color: var(--cor-primaria);
    text-decoration: none;
    cursor: pointer;
}

.card-autenticacao {
    width: 340px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 4px 8px 0px #ddd, 0px -2px 5px -3px #ddd;
    border: none;
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

    .alert:last-child {
        margin-bottom: 0 !important;
    }

#zona-notificacao {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    padding: 0 10px 10px 0;
}

#logo-header {
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    border-bottom: 1px solid #ddd;
}

/* INICIO - BUTTONS */
.btn {
    border: none;
}

    .btn.btn-primary {
        color: var(--cor-primaria-texto);
        background-color: var(--cor-primaria);
    }

        .btn.btn-primary:hover {
            background-color: #0093c3;
        }

        .btn.btn-primary:active {
            background-color: #0082ad;
        }

.action-button {
    height: 36px;
    font-size: inherit;
    box-shadow: 0px 4px 8px 0px #ddd, 0px -2px 5px -3px #ddd;
}

    .action-button i {
        line-height: 1;
        margin-right: 10px;
    }

.card .action-button {
    box-shadow: none;
}
/* FIM - BUTTONS */


@media (max-width: 767px) {
    .card-autenticacao {
        width: auto;
        padding: 0;
        margin-left: 18px;
        margin-right: 18px;
    }

    #logo-header {
        padding-left: 0;
        justify-content: center;
        border: none;
    }

    #zona-notificacao {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        padding: 10px;
    }
}
