body {
    font-family: "Gill Sans", sans-serif;
    background-color: #e4f0f5 !important;
}

#loginPage {
    border: #326631 2px solid;
    border-radius: 20px;

    position: relative;
    overflow: hidden;
}

.background {
    background-color: rgba(255, 255, 255) !important;
    border-radius: 20px !important;
}

#imgLogin {
    width: 30%;
    margin: 0 35%;
}

.btn {
    background-color: rgb(161, 214, 91) !important;
    height: 45px;
    font-size: min(4vw, 18px) !important;
}
.btn:hover {
    background: rgb(50, 102, 49, .7) !important;
}

.btn_return {
    background-color: rgb(214, 91, 91) !important;
    height: 45px;
    font-size: min(4vw, 18px) !important;
}
.btn_return:hover {
    background: rgba(124, 27, 27, 0.8) !important;
}

.btVoltar {
    border: none;
    outline: none;
    color: #326631;
    font-size: min(4vw, 18px);
    font-weight: bold;
    background: transparent;
    cursor: pointer;
}
.btVoltar:hover {
    color: rgb(50, 102, 49, .7);
}

.login-animation {
    animation: login-animation 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@keyframes login-animation {
    0% {
        top: -400px;
        opacity: 0;
    }
    100% {
        top: 0px;
        opacity: 1;
    }
}

.viewPassword {
    cursor: pointer !important;
}
.viewPassword:hover {
    background-color: rgb(0, 0, 0, .1);
}

/************************* PESQUISA *************************/

.input-pesquisa, .bt-pesquisa {
    cursor: pointer !important;
}
.input-pesquisa:not(:disabled):hover, .bt-pesquisa:not(:disabled):hover {
    background-color: rgb(0, 0, 0, .1);
}

/************************ MENUS ************************/

.menusOptions {
    transition: opacity .4s ease, transform .4s ease, max-height .4s ease;
    overflow: hidden;
}

.menusOptions.hidden {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
    pointer-events: none;
}

.menusOptions.show {
    opacity: 1;
    transform: translateY(0);
    max-height: none;
}

.animating {
    pointer-events: none;
}


/************************ SLIDER ************************/

.slider-container-orgao {
    display: flex;
    width: 100%;
    transition: transform .6s ease, height .6s ease;
    overflow: hidden;
}
.slide-orgao {
    width: 100%;
    padding: 0 5px;
}

.slider-container {
    display: flex;
    width: 300%;
    transition: transform .6s ease, height .6s ease;
    overflow: hidden;
}
.slide {
    width: calc(100% / 3);
    margin: 0 5px;
}

/* posições */
.slider-container.step-1 {
    transform: translateX(0%);
}

.slider-container.step-2 {
    transform: translateX(-33.3333%);
}

.slider-container.step-3 {
    transform: translateX(-66.6666%);
}


/************************ MENUS-LATERAL CADASTRO ************************/

.side-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 5;
}
#loginPage.open .side-overlay {
    opacity: 1;
    pointer-events: all;
}

.side-panel {
    position: absolute;
    top: 0;
    right: -360px;
    width: 360px;
    height: 100%;
    background: #f4f6f9;
    transition: right 0.5s ease;
    z-index: 10;

    display: flex;
    flex-direction: column;
    overflow: hidden;
}
#loginPage.open .side-panel {
    right: 0;
}

/* header */
.side-header {
    height: 55px;
    flex-shrink: 0;
    background: #326631;
    color: #fff;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* botão fechar */
.btn-close-panel {
    background: none;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}
.side-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    min-height: 0;
}

.side-footer {
    flex-shrink: 0;
    padding: 10px 16px;
    border-top: 1px solid rgba(0,0,0,.1);
    background: #fff;
}


/************************ BTN SIDEMENU ************************/

.form-floating-btn {
    width: 100%;
    height: 52px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #ced4da;
    background-color: #fff;

    display: flex;
    align-items: center;
    gap: 10px;

    cursor: pointer;
    font-size: min(4vw, 18px) !important;
    color: #495057;

    transition: background .2s ease, border .2s ease;
}

.form-floating-btn:hover {
    background-color: #f8f9fa;
    border-color: #326631;
}

/* Ícone à esquerda */
.form-floating-btn .icon-left {
    font-size: 14px;
    color: #326631;
    flex-shrink: 0;
}
/* Texto */
.form-floating-btn .btn-text {
    flex-grow: 1;
    text-align: left;
}
/* Seta à direita */
.form-floating-btn .icon-right {
    font-size: 14px;
    color: #6c757d;
    transition: transform .2s ease;
}
/* Hover anima a seta */
.form-floating-btn:hover .icon-right {
    transform: translateX(3px);
}

.nome-anexo, .btn-anexo {
    cursor: pointer;
}
.nome-anexo:hover, .btn-anexo:hover {
    background-color: rgb(0, 0, 0, .1);
}


/************************ INTUP DATA ************************/

.btn-data {
    cursor: pointer;
}
.btn-data:not(.disabled):hover {
    background-color: rgb(0, 0, 0, .1);
}

/************************ ERRO MSG ************************/

#erro {
    color: #ffffff;
    text-align: center;
    position: fixed;
    bottom: -5%;
    right: 0;
    height: 5%;
    width: 100%;
    background-color: rgb(220, 53, 69, .75);
    padding: 3px;
    transition: bottom .3s ease;

    display: flex;
    justify-content: center;
    align-items: center;
}

#erro.showErro {
    bottom: 0;
}

#loginErro {
    text-align: center;
    font-size: min(4vw, 19px);
}


/************************ MENUS-LATERAL CADASTRO ************************/

.side-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 5;
}
#loginPage.open .side-overlay {
    opacity: 1;
    pointer-events: all;
}


/************************ ESQUECI SENHA ************************/

#btEsqueciSenha
{
    width: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    background-color: transparent;
}
#btEsqueciSenha:hover
{
    color: rgb(133, 173, 79)
}