form {
    margin: 0 auto;
    text-align: center;
}

form img {
    width: 70%;
    margin: 20px 0;
}

form h2 {
    text-align: center;
    margin: 20px 0;
}

input {
    border: none;
    border-bottom: 1px var(--corBase) solid;
    margin: 10px auto;
    width: 90%;
    padding: 10px;
}

label {
    font-size: 14px;
    top: 10px;
    left: 30px;
    font-style: italic;
    color: gray;
    position: absolute;
    transition: 0.3s;
    width: 90%;
    display: flex;
    align-items: center;
}

input:focus+label {
    top: -20px!important;
    font-size: 12px!important;
    color: var(--corBase)!important;
    font-weight: bold!important;
    transition: 0.3s;
}

input[type=submit] {
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    background-color: var(--corBase);
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.divCampos {
    position: relative;
    width: 100%;
    margin: 20px auto;
    text-align: left;
    display: flex;
    justify-content: center;
}

#btnGoogle {
    width: 90%;
    margin: 10px auto;
}

#divContas {
    display: flex;
    justify-content: space-around;
    margin: 40px auto;
}

#divContas a {
    font-size: 12px;
    padding: 10px 30px;
    border: 1px #dfdfdf solid;
    border-radius: 5px;
}

#divContas a:hover {
    background-color: var(--corBase);
    color: white;
}

#linksPoliticas a {
    margin: 0 10px;
    color: var(--corBase);
}

#linksPoliticas a:hover {
    font-weight: bold;
}

#divGoogle {
    margin: 0 auto;
    width: 90%;
    text-align: center;
}

@media (max-width:990px) {
    form h2 {
        font-size: 14px;
    }
    .divCampos {
        margin: 10px auto;
    }
}

@media (max-width:990px) {
    #formLogin {
        width: 90%;
        height: 90%;
        padding: 20px;
        z-index: 200;
    }
    form h2,
    form h3 {
        font-size: 14px;
    }
    .divCampos {
        margin: 10px auto;
    }
}