#sublinha {
    color: rgb(185, 24, 40);
}

#sublinha:hover {
    text-decoration: underline;
}

.botaoportal {
    width: 250px;
    height: 50px;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

#box-container {
    position: relative;
}

#box-1 {
    display: inline-block;
    float: left;
    margin-left: 5%;
    padding: 2%;
}

#box-2 {
    display: inline-block;
    float: right;
    margin-right: 5%;
    padding: 2%;
}

#box-container {
    width: 100%;
    height: 120px;
}

#divCep {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#naoSeiCep {
    padding-top: 5px;
    text-align: center;
}

.btn-cep {
    border-radius: 5px;
    font-family: Poppins, sans-serif;
    background-color: #6f6f76;
    color: white;
}

.btn-anexo{
    border-radius: 5px;
    font-family: Poppins, sans-serif;
    background-color: #6f6f76;
    color: white;
}

#foto{
    font-weight: bold;
}

.btn-cep:hover {
    cursor: pointer;
}

.descricao {
    font-size: 0.7rem;
    text-indent: 0px !important;
}

.form-checkbox {
    font-family: system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
}

input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    /* transform: translateY(-0.075em); */
    display: grid;
    place-content: center;

}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em red;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.form-checkbox+.form-checkbox {
    margin-top: 1em;
}
