.container-principal {
    display: flex;
    max-width: 843px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
                0 -4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
}

.container-info {
    background-color: #1F618D;
    padding: 1rem;
    border-radius: 1rem 0 0 1rem;
    width: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

}

.info {
    padding: 1rem;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.container-login {
    display: flex;
    align-items: center;
    margin: auto;
}
.imagem-assina {
    width: 2rem;
    height: 2rem;
    color: #fff;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.title {
    font-size: 2em;
    font-weight: bold;
    text-transform: capitalize;
    color: white;
    text-align: center;
}

.texto-info {
    font-size: .9em;
    text-align: center;
    text-wrap: pretty;
    max-width: 80%;
}


.titulo {
    padding-bottom: 1rem;
    margin: 0;

    text-align: center;
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: 600;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: min-content;
    gap: .5rem;
}

.form-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.relative.w-full.dv-cpf.mb-4,
.relative.w-full.dv-codigo.mb-4,
.relative.w-full.dv-password.mb-4 {
    margin-bottom: 0 !important;
    .input-borda:focus {
        border: 2px solid #1F618D;
    }
}

.link-form-container {
    font-size: 0.8em;
    text-align: start;
    text-wrap: pretty;
}

.link-form {
    text-decoration: underline;
    color: #1f93ff;
    cursor: pointer;
}

.codigo-container {
    display: flex;
    align-items: center;
    gap: clamp(0.2rem, 2vw, 0.4rem);
    justify-content: center;
    padding-bottom: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.input.codigo-input {
    width: clamp(2rem, 8vw, 3rem);
    height: clamp(2rem, 8vw, 3rem);
    font-size: clamp(1rem, 4vw, 1.5em);
    text-align: center;
    border: .125rem solid #ccc;
    border-radius: 0.313rem;
    outline: none;
    transition: border-color 0.2s;
    padding: 0;
}

.codigo-separador {
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: bold;
}

.codigo-input:focus {
    border-color: #1F618D;
}

.codigo-separador {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 5px;
    color: #ccc;
}


.central-captcha {
    display: flex;
    justify-content: center;
}

.botao-login {
    background-color: #1F618D;

    color: #fff;

    width: 100%;
}

.campo {
    margin-bottom: 0;
    padding: 0;
}


@media (max-width: 769px) {
    .info{
        gap: 1rem;
    }
    .container-principal {
        width: 100%;
        display: grid;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
                0 -4px 8px rgba(0, 0, 0, 0.05);
    }
    .container-info {
        width: 100%;
        border-radius: 1rem 1rem 0 0;
    }
    .c-logo-container.container-logo{
        display: none;
    }

    .container-login {
        max-width: 100%;
        margin: auto;
        padding: 1rem;
    }

    .link-form-container {
        padding-top: 1rem;
    }
}


@media (max-width: 480px) {
    .container-principal {
        width: 100%;
    }

    .titulo {
        font-size: 1.3em;
    }

    .form-container {
        width: 100%;
    }

    .form {
        align-items: stretch;
    }

    .input {
        width: 100%;
    }
}
