/* =========================================================
   GERAL
   ========================================================= */
body, html { height: 100%; }
.body, html, h1, h2, h3, h4, h5, h6, span { font-family: 'Rawline','Raleway',sans-serif; }

.left-side {
    background-color: #123a78;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Mudar para space-between para espaço entre conteúdo e rodapé */
    height: 100vh;
    text-align: center;
}

.center-content {
    flex: 1; /* Permite que esta seção cresça e ocupe espaço */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-side {
    background-color: white;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.footer {
    padding: 10px; /* Ajuste o padding conforme necessário */
    color: white; /* Cor do texto do rodapé */
}

/* =========================================================
   BOTÃO PRIMARY - PADRÃO GOV.BR
   Substitui: btn btn-primary btn-block btn-flat
========================================================= */

.btn.btn-primary {
    background-color: #1351b4 !important;
    border-color: #1351b4 !important;
    color: #ffffff !important;

    font-family: "Rawline", Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;

    height: 48px;
    border-radius: 100px !important;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s ease-in-out;
}

/* Hover */
.btn.btn-primary:hover {
    background-color: #0c326f !important;
    border-color: #0c326f !important;
    color: #ffffff !important;
}

/* Focus */
.btn.btn-primary:focus,
.btn.btn-primary:active {
    box-shadow: 0 0 0 4px rgba(19, 81, 180, 0.25) !important;
    outline: none !important;
}

/* Disabled */
.btn.btn-primary:disabled,
.btn.btn-primary.disabled {
    background-color: #c5d4eb !important;
    border-color: #c5d4eb !important;
    color: #ffffff !important;
    cursor: not-allowed;
    opacity: 1 !important;
}

/* Botão em largura total */
.btn-block {
    width: 100%;
}

/* Remove borda quadrada do AdminLTE */
.btn-flat {
    box-shadow: none !important;
}

.btn.btn-block {
    margin-bottom: 12px;
}

/* =========================================================
   BOTÃO SECONDARY - PADRÃO GOV.BR
   Substitui: btn btn-secondary btn-block btn-flat
========================================================= */

.btn.btn-secondary {
    background-color: #ffffff !important;
    border: 2px solid #1351b4 !important;
    color: #1351b4 !important;

    font-family: "Rawline", Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;

    height: 48px;
    border-radius: 100px !important;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s ease-in-out;
}

/* Hover */
.btn.btn-secondary:hover {
    background-color: #e8f0fb !important;
    color: #1351b4 !important;
    border-color: #1351b4 !important;
}

/* Focus / Active */
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    box-shadow: 0 0 0 4px rgba(19, 81, 180, 0.25) !important;
    outline: none !important;
}

/* Disabled */
.btn.btn-secondary:disabled,
.btn.btn-secondary.disabled {
    background-color: #f2f2f2 !important;
    border-color: #c5c5c5 !important;
    color: #9e9e9e !important;
    cursor: not-allowed;
    opacity: 1 !important;
}

/* =========================================================
   BOTÕES SMALL - PADRÃO GOV.BR
   Aplica para:
   - btn btn-primary btn-sm
   - btn btn-secondary btn-sm
========================================================= */

.btn.btn-sm {
    height: 36px !important;
    font-size: 13px !important;
    padding: 0 16px !important;
    border-radius: 100px !important;

    font-family: "Rawline", Arial, sans-serif;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}



