.estruturaLogin {
    display: none;
    justify-content: flex-end;
    position: absolute;
    top: clamp(3rem, 5%, 4rem);
    width: 100%;
    padding-right: 22%;
    z-index: 1000;
    margin-top: 1rem;
}

.caixaGeral {
    width: 21rem;
    min-height: 21rem;
    max-width: 60%;
    height: auto;
    background: transparent;
    border-radius: 20px;
    background-color: var(--branco);
    position: relative;
    border: solid 1px var(--cinza-medio);
}

.caixaGeral .botaoFechar {
    position: absolute;
    top: 0;
    right: 0;
    width: 2.8125rem;
    height: 2.8125rem;
    background: transparent;
    font-size: 1.5rem;
    color: var(--preto);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.botaoFechar:hover {
    color: var(--azul);
}

.caixaGeral .blocoFormulario {
    width: 100%;
    padding: 0 25px;
    margin-top: 2rem;
}

.campoInput {
    position: relative;
    width: 100%;
    height: 3rem;
    border-bottom: 2px solid var(--preto);
}

.campoInput input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--preto);
    font-weight: 600;
    padding: 25px 35px 0 5px;
}

.lembrarSenha {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    margin: -10px 0 15px;
    color: var(--preto);
}

.lembrarSenha label {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.lembrarSenha label input {
    accent-color: var(--preto);
    margin-right: 5.8px;
}

.esqueceuSenha {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: var(--preto);
    font-size: 1rem;
    font-weight: 500;
    padding-top: 1rem;
    transition: ease-in-out 0.3s;
}

.esqueceuSenha:hover {
    color: var(--azul);
}

@media (max-width: 820px) {
    .caixaGeral {
        width: 80vw;
        max-width: 20rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .caixaGeral {
        width: 90vw;
        min-height: 16rem;
        margin-top: 0.5rem;
        padding: 1rem;
    }
}