header div.header-mobile,
div.menu {
    display: none;
}

div.content {
    grid-area: content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

/*------------------componente text-------------------*/

input, select {
    width: 100%
}


/*----------------componente card-login----------------*/

div.card-login {
    height: 20rem;
    background-color: unset;
    border: none
}

div.card-login div.card-title {
    background-color: unset;
    color: #000;
    font-weight: unset;
    font-size: 28px;
}

    div.card-login div.card-title-version {
        background-color: unset;
        color: #f00;
        font-weight: unset;
        font-size: 18px;
        align-self: center;
    }

div.card-login div.card-footer, div.card-home div.card-footer {
    padding: 0;
}

div.card-login div.card-body {
    height: 100%;
    padding: 20px 0px;
}

div.card-login div.card-body form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

@media(max-width: 720px) {
    div.content {
        padding: 1rem;
    }

    div.card-login {
        width: 100%;
    }
}