body {
    background-color: #FAFAFA;
}

.font-archivo {
    font-family: "Archivo", sans-serif;
    margin: 0;
}

.font-work-sans {
    font-family: "Work Sans", sans-serif;
    margin: 0;
}

.gerenciador-header {
    padding: 16px 75px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 32px;
}

.gerenciador-header h6 {
    grid-column: 10 / 13;
    color: #353334;

    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.18px;
    text-wrap-mode: nowrap;

}

.gerenciador-header a {
    grid-column: 1 / 3;
}

main {
    padding: 80px 75px;
    margin: 0 auto;
    display: flex;
    column-gap: 136px;
    height: calc(100vh - 72px);
    justify-content: space-between;
}

main p {
    color: #000;

    font-family: "Work Sans", sans-serif;
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.tipo-pessoa-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 36vw;
}

.inputs-tipo-pessoa {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inputs-tipo-pessoa input[type="radio"] {
    display: none;
}

.inputs-tipo-pessoa label {
    color: var(--neutral-800, var(--neutral-800, #353334));


    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;

    padding: 16px;

    border-radius: 8px;
    border: 1px solid #C2C1C2;
    background: #FFF;

    cursor: pointer;
}

.inputs-tipo-pessoa label:hover {
    border-color: #782DC8;
}

.inputs-tipo-pessoa input[type="radio"]:checked+label {
    color: #782DC8;
    border-color: #782DC8;
    background: #F1EAF9;
}

.inputs-tipo-pessoa p {
    color: #353334;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.inputs-tipo-pessoa .ja-possui-cadastro {
    display: flex;
    align-items: center;
    gap: 4px;
}

button {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 16px;
    width: fit-content;
    border-radius: 8px;
    border: none;
    background: #782DC8;
    color: #FFF;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

button:hover {
    background: #9357D3;
    box-shadow: 0px 8px 8px 0px rgba(147, 87, 211, 0.30);
}

button:active {
    background: #6024A0;
}

button:disabled {
    color: #6D6C6D;
    background: rgba(0, 0, 0, 0.10);
    cursor: not-allowed;
}


button.ghost {
    color: #782DC8;
    background-color: transparent;
}

button.ghost:hover {
    background: var(--primary-50, #F1EAF9);
    box-shadow: 0px 8px 8px 0px rgba(147, 87, 211, 0.30);
}

button.ghost:active {
    background: var(--primary-100, #E4D5F4);
}

button.ghost:disabled {
    background: transparent;
    cursor: not-allowed;
    color: #6D6C6D;

}

button.secondary {
    color: #171719;
}

button.secondary:hover {
    background: rgba(0, 0, 0, 0.10);
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.15);
}

button.secondary:active {
    background: rgba(0, 0, 0, 0.20);
}

button.secondary:disabled {
    background: transparent;
    cursor: not-allowed;
}



.text-field,
.select-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.select-field label {
    margin: 0;
    color: #171719;

    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.text-field input[type="text"],
.text-field input[type="password"],
.text-field input[type="email"],
.text-field select,
.select-field input[type="text"],
.select-field input[type="password"],
.select-field input[type="email"],
.select-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 12px 16px;
    width: -webkit-fill-available;

    border-radius: 4px;
    border: 1px solid #A6A5A5;
    background: #FFF;
}

.select-field .select-field select {
    background: url('/img/gerenciador/icone_caret_down.svg') no-repeat right 10px center !important;
    background-size: 20px;
}

.text-field input[type="text"]:hover,
.text-field input[type="password"]:hover,
.text-field input[type="email"]:hover,
.text-field select:hover,
.select-field input[type="text"]:hover,
.select-field input[type="password"]:hover,
.select-field input[type="email"]:hover,
.select-field select:hover {
    border-color: #9357D3;
    background: #FAFAFA;
}

.text-field input[type="text"]:focus,
.text-field input[type="text"]:focus-visible,
.text-field input[type="password"]:focus,
.text-field input[type="password"]:focus-visible,
.text-field input[type="email"]:focus,
.text-field input[type="email"]:focus-visible,
.text-field select:focus,
.text-field select:focus-visible,
.select-field input[type="text"]:focus,
.select-field input[type="text"]:focus-visible,
.select-field input[type="password"]:focus,
.select-field input[type="password"]:focus-visible,
.select-field input[type="email"]:focus,
.select-field input[type="email"]:focus-visible,
.select-field select:focus,
.select-field select:focus-visible {
    outline: none;
    border-color: #481B78;
    background: #FFF;
}

.text-field input[type="text"]:disabled,
.text-field input[type="password"]:disabled,
.text-field input[type="email"]:disabled,
.text-field select:disabled,
.select-field input[type="text"]:disabled,
.select-field input[type="password"]:disabled,
.select-field input[type="email"]:disabled,
.select-field select:disabled {
    border-color: #DEDEDE;
    background: #FAFAFA;
}

.text-field input[type="text"]::placeholder,
.text-field input[type="password"]::placeholder,
.text-field input[type="email"]::placeholder,
.select-field input[type="text"]::placeholder,
.select-field input[type="password"]::placeholder,
.select-field input[type="email"]::placeholder {
    color: #6D6C6D;

    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.text-field input[type="text"].erro,
.text-field input[type="password"].erro,
.text-field input[type="email"].erro,
.text-field select.erro,
.select-field input[type="text"].erro,
.select-field input[type="password"].erro,
.select-field input[type="email"].erro,
.select-field select.erro {
    border-color: #FF4848;
    background: #FFF;
}


.text-field input[type="text"].erro+span,
.text-field input[type="password"].erro+span,
.text-field input[type="email"].erro+span,
.text-field select.erro+span,
.select-field input[type="text"].erro+span,
.select-field input[type="password"].erro+span,
.select-field input[type="email"].erro+span,
.select-field select.erro+span {
    color: #FF4848;
    display: block;
}

.text-field span,
.select-field span {
    color: #8A8989;

    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.24px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 62%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.alert-box {
    display: flex;
    padding: 16px;
    align-items: center;
    gap: 16px;

    border-radius: 4px;

}

.alert-box>img {
    width: 24px;
    height: auto;
    align-self: flex-start;
}

.alert-box>.alert-box-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alert-box>.alert-box-content>h6 {
    margin: 0;
    color: #171719;

    font-family: "Archivo", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.18px;
}

.alert-box>.alert-box-content>p {
    margin: 0;
    color: #171719;

    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}


.alert-box.warning {
    border-left: 3px solid #E5A000;
    background: #FAECCC;
}

.alert-box.info {
    border-left: 3px solid #316CCA;
    background: #D6E2F4;
}

.align-end {
    align-self: flex-end;
}

.items-center {
    align-items: center;
}

.tipo-pessoa-selecionado {
    color: #782DC8;

    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;

    padding: 16px;

    border-radius: 8px;
    border: 1px solid #782DC8;
    background: #F1EAF9;
}

.hyperlink {
    display: flex;
    gap: 4px;
    align-items: center;
    width: fit-content;
}

.hyperlink>a {
    color: #782DC8;

    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-decoration-line: underline;
}

.hyperlink>a:hover {
    color: #9357D3;
    text-decoration-line: none;
}

.hyperlink>a.disabled {
    color: rgba(0, 0, 0, 0.40);
    text-decoration-line: none;
}

dialog {
    padding: 16px 24px;
    flex-direction: column;
    gap: 16px;
    width: 700px;

    border: none;
    border-radius: 16px;
    background: #FFF;

    box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.15);
}

.hidden {
    display: none;
}

.title-img {
    grid-column: 1 / 8;
    max-width: 44vw;
}

.title-img h2 {
    color: var(--neutral-800, #353334);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.4px;
}

.title-img img {
    height: auto;
}

.formulario-cadastro {
    width: 44vw;
    max-width: 44vw;
    display: none;
    flex-direction: column;
    gap: 24px;
}

.tipo-pessoa-selecionado {
    color: #782DC8;

    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;

    padding: 16px;

    border-radius: 8px;
    border: 1px solid #782DC8;
    background: #F1EAF9;
}

progress {
    width: 100%;
    height: 8px;
    border-radius: 8px;
    background-color: #E4D5F4;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

progress::-webkit-progress-bar {
    background-color: #E4D5F4;
    border-radius: 8px;
}

progress::-webkit-progress-value {
    background-color: #782DC8;
    border-radius: 8px;
}

progress::-moz-progress-bar {
    background-color: #782DC8;
    border-radius: 8px;
}

.step-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nivel-senha {
    display: inline-flex;
    gap: 8px;
}

.nivel-senha p {
    margin: 0;
    color: #000;

    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.nivel-senha span {
    margin: 0;
    padding: 2px 8px;
    border-radius: 100px;

    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.24px;
}

.nivel-senha.baixo span {
    color: #992B2B;
    background: #FFDADA;

}

.nivel-senha.medio span {
    color: #896000;
    background: #FAECCC;
}


.nivel-senha.alto span {
    color: #006511;
    background: #CCEED2;
}



.icon-title-close {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.icon-title-close .icon-title {
    display: inline-flex;
    gap: 8px;

}

.icon-title-close .icon-title>h5 {
    color: #000;

    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.2px;
}

.criterios-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.criterios-container ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.criterios-container ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;

    color: #171719;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.criterios-container ul li.correct::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: url('/img/gerenciador/icone_check_circle.svg') no-repeat center center;
    background-size: contain;
}

.criterios-container ul li.wrong::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: url('/img/gerenciador/icone_x_circle.svg') no-repeat center center;
    background-size: contain;
}


.step-5-inputs-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    column-gap: 16px;
}

.step-5-inputs-fields .text-field.col2 {
    grid-column: span 2;
}

.step-5-inputs-fields .cep-conteiner {
    display: inline-flex;
    gap: 24px;
    grid-column: span 2;
}

.step-5-inputs-fields .cep-conteiner .text-field {
    width: 100%;
}

.step-5-inputs-fields .cep-conteiner span>a {
    white-space: nowrap;
}



.actions-iniciais {
    display: flex;
    gap: 8px;
}

#select-pais-input-container select:has(option[value=""]:checked),
#select-estado-input-container select:has(option[value=""]:checked) {
    color: #6D6C6D;
}

button.align-end {
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    main {
        padding: 24px;
        flex-direction: column;
        width: 100vw;
        justify-content: flex-start;
        gap: 32px;
    }

    .title-img {
        grid-column: inherit;
        max-width: none;
        width: 100%;
    }

    .formulario-cadastro {
        grid-column: inherit;
        max-width: none;
        width: 100%;
    }

    .step-container {
        gap: 16px;
    }

    .criterios-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-5-inputs-fields {
        display: flex;
        flex-wrap: wrap;
    }

    .gerenciador-header h6 {
        display: none;
    }

    .gerenciador-header {
        padding: 16px 24px !important;
    }

    .title-img img {
        width: 92vw;
    }

    .title-img h2 {
        font-size: 24px;
        font-weight: 700;
        line-height: 130%;
        letter-spacing: -0.24px;
    }

    .actions-iniciais {
        flex-direction: column-reverse;
        width: 100%;
    }

    button {
        width: 100%;
        justify-content: center;
    }

    .left-button {
        justify-content: left;
    }

    .align-end {
        align-self: inherit;
    }

    .text-field,
    .select-field {
        width: 100%;
        height: inherit;
    }

    .text-field input[type="text"],
    .text-field input[type="password"],
    .text-field input[type="email"],
    .text-field select,
    .select-field input[type="text"],
    .select-field input[type="password"],
    .select-field input[type="email"],
    .select-field select {
        max-width: 100vw;
    }


    .field-pequeno-mobile {
        width: calc(50vw - 24px - 8px);
    }

    #select-pais-input-container select,
    #select-estado-input-container select {
        width: -webkit-fill-available;
    }

    .cep-conteiner input {
        width: 100% !important;
    }

    .tipo-pessoa-container {
        width: 100%;
    }

    .hide-mobile {
        display: none !important;
    }
}