:root {
    --ck-z-default: 30060;
}

body {
    --fundo: rgba(255, 255, 255, 1);
    --texto: rgba(134, 142, 151, 1);
    --divisao-esquerda-fundo: rgba(27, 141, 242, 0);
    --botao-fundo: rgba(1, 49, 141, 1);
    --botao-texto: rgba(255, 255, 255, 1);
    margin: 0;
}
.base {
    display: flex;
    height: 100vh;
    background-color: var(--fundo);
    color: var(--texto);
}
.base .divisao-esquerda {
    flex: 1 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
    box-sizing: border-box;
    box-shadow: 0 0 5px hsla(0deg, 0%, 0%, 25%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    background-color: var(--divisao-esquerda-fundo);
}
.base .divisao-esquerda .logo {
    max-width: 100%;
    max-height: 200px;
}
.base .divisao-direita {
    flex: 1 0 50%;
    display: flex;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
.base .divisao-direita .painel {
    box-shadow: 0 0 5px hsla(0deg, 0%, 0%, 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    row-gap: 30px;
    border-radius: 10px;
    background-color: white;
    padding: 20px 50px;
    width: 75%;
    height: fit-content;
    min-height: 100%;
}
.base .divisao-direita .painel .topo {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    width: 100%;
    align-items: center;
    row-gap: 30px;
}
.base .divisao-direita .painel .topo .titulo {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 2rem;
    font-weight: bold;
}
.base .divisao-direita .painel .topo .logo {
    max-width: 100%;
    max-height: 100px;
}
.base .divisao-direita .painel .topo .formulario {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
}
.base .divisao-direita .painel .topo .formulario .aspNetHidden {
    display: none;
}
.base .divisao-direita .painel .topo .formulario .secao {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.base .divisao-direita .painel .topo .formulario .secao p {
    margin: 0;
}
.base .divisao-direita .painel .rodape {
    text-align: center;
}

.base .btn-primary {
    background-color: var(--botao-fundo);
    border-color: var(--botao-fundo);
    color: var(--botao-texto);
}
.base .btn-default {
    color: var(--texto);
}
.aviso-cookies > .icone {
    fill: var(--texto);
}

@media screen and (max-width: 768px) {
    .base .divisao-esquerda {
        display: none;
    }
}
@media screen and (max-width: 1024px) {
    .base .divisao-direita .painel {
        width: 100%;
        padding: 20px;
    }
}

