/* Style 1.23 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
    position: relative;
    background-color: #dbedff;
    color: #3F3F3F;
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

/***
*  
* FORMATANDO PAGE BLOCK
*
***/

#block-page {
    position: absolute;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1052;
}

#content-block {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content-block form {
    padding: 1rem 4rem 3rem 4rem;
    background-color: white;
    border-radius: 15px;
    width: 30rem;
}

#content-block form h2 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.6em;
    color: rgb(56, 123, 255);
    margin-bottom: 8px;
}

.password_error {
    display: flex;
    align-items: center;
    background-color: rgb(255, 197, 197);
    border: 2px solid rgb(255, 35, 35);
    color: rgb(139, 0, 0);
    border-radius: 8px;
    padding: 5px 10px;
    margin-top: 10px;
    margin-bottom: 5px;
}

#btn-password {
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.1em;
}

#btn-password.btn {
    padding: 20px;
}

/*******************************************************************************************************/

/***
*  
* FORMATANDO INPUT
*
***/

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-password {
    flex: 1;
    height: 3rem;
    padding-left: 15px;
    padding-right: 40px;
    outline: 1.4px solid rgb(212, 212, 212);
    border: none;
    border-radius: 8px;
    transition: all .02s linear;
    font-size: 1.2em;
}

.input-password:focus {
    outline: none;
    outline: 2px solid #0080ff;
    box-shadow: none;
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

.input-content {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.input-custom {
    position: relative;
    height: 2.5rem;
    padding-left: 15px;
    padding-right: 10px;
    outline: 1.4px solid rgb(212, 212, 212);
    border: none;
    border-radius: 8px;
    background: none;
    transition: all .05s linear;
}

.input-custom:focus {
    outline: none;
    outline: 2px solid #0080ff;
    box-shadow: none;
}

.input-content input[type="text"] {
    padding-right: 30px; /* Aumente o padding para o ícone */
}

.check-validacao {
    position: absolute;
    padding: 0;
    margin: 0;
    right: 10px;
    top: 50%;
    transform: translateY(35%); /* Centraliza verticalmente */
    color: green;
    font-size: 1.1em;
    pointer-events: none; /* Impede que o ícone interfira com o clique no input */
}

/*******************************************************************************************************/

/***
*  
* FORMATANDO SELECT
*
***/

/* Estilização do container */
.custom-select {
    margin-top: 6px;
    position: relative;
    width: 100%;
    user-select: none;
}

/* Estilização do botão de seleção */
.select-trigger {
    position: relative;
    height: 2.5rem;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Para alinhar a seta à direita */
    background-color: white;
    outline: 1.4px solid rgb(212, 212, 212);
    border: none;
    border-radius: 8px;
    transition: all .05s linear;
    cursor: pointer;
}

/* Seta para indicar o dropdown */
.select-trigger .arrow {
    width: 8px;
    height: 8px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
    transition: transform 0.2s ease-in-out;
}

/* Quando o menu estiver aberto, a seta gira */
.custom-select.active .select-trigger .arrow {
    transform: rotate(135deg);
}

/* Destacar o select quando estiver focado (Tab) */
.select-trigger:focus {
    outline: 2px solid #0080ff;
    box-shadow: none;
}

/* Destacar o select quando o menu estiver aberto */
.custom-select.active .select-trigger {
    outline: 2px solid #0080ff;
    box-shadow: none;
}

/* Estilização do menu de opções */
.select-options {
    position: absolute;
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
    max-height: 0; /* Evita ocupar espaço */
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: max-height 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

/* Mostrar quando ativo */
.custom-select.active .select-options {
    max-height: 300px; /* Ajuste conforme necessário */
    opacity: 1;
    transform: scaleY(1);
}

/* Estilização dos itens */
.select-options li {
    padding: 10px;
    text-align: left;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    border-radius: 4px;
}

/* Hover nos itens */
.select-options li:hover {
    background: #dadee2;
}

.select-options li.selected {
    background: #0080ff;
    color: white;
    font-weight: bold;
}

/*******************************************************************************************************/

/***
*  
* FORMATANDO CONTAINER/FORM
*
***/

.container {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container form {
    max-height: 90vh;
    overflow-y: auto;
    background-color: white;
    box-shadow: 0 0 20px 10px rgba(0, 0, 0, .1);
    padding: 4rem;
    border-radius: 5px;
}

/*******************************************************************************************************/

/***
*  
* FORMATANDO TITULO DO FORMS
*
***/

#saudacoes {
    font-size: 1.5em;
    font-weight: bold;
    color: rgb(56, 123, 255);
    text-transform: uppercase;
}

#titleOne h1,
#titleTwo h1{
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#titleOne h1 {
    background-color: rgb(223, 223, 255);
    color: rgb(61, 61, 255);
    font-size: 1.8em;
}

#titleTwo h1 {
    background-color: rgb(255, 215, 215);
    color: rgb(255, 0, 0);
    font-size: 1.6em;
}

#titleOne h2,
#titleTwo h2 {
    font-size: 1.5em;
    font-weight: bold;
}

/*******************************************************************************************************/

/***
*  
* FORMATANDO LABEL
*
***/

label {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 6px;
}

.text-required {
    color: rgb(0, 81, 255);
    font-weight: bold;
}

/*******************************************************************************************************/

/***
*  
* FORMATANDO BOTÕES e LINKS
*
***/

.link-custom {
    font-size: 1.2em;
}

.link-custom i {
    color: rgb(0, 81, 255);
}

.btn-custom {
    text-transform: uppercase;
    font-weight: bold;
}

/*******************************************************************************************************/

/***
*  
* FORMATANDO ITENS PROCESSADOS/MODAL
*
***/
/* Animação de scale para os steps */
#steps {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

#steps.steps {
    width: 100%;
}  

/* Animação para os steps */
.step {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.step.step-primary {
    opacity: 1;
}

#steps.fade-out {
    transform: scale(0);
    opacity: 0;
}

#icon-processo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
}

#icon-processo .fa-file-pdf {
    color: rgb(255, 55, 55);
}

#icon-processo .fa-file-word {
    color: rgb(91, 91, 255);
}


#collapse-content {
    background-color: #F0F8FF;
}

.collapse-title h2 {
    font-weight: bold;
}

#descricao-collapse {
    font-size: 1em;
    color: #8b8b8b;
}

.item-process {
    transition: background .1s ease;
}

.item-process:hover {
    background-color: #f3f5f79d;
}

#conclusao {
    font-weight: bold;
    color: rgb(0, 121, 0);
    margin-bottom: 15px;
}

#title-list {
    font-size: 0.9em;
    font-weight: medium;
}