.form-new label {
    font: 400 1rem/1.5 "Cabin", sans-serif;
    color: var(--color-6);
    background-color: var(--color-12);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    border: 1px solid var(--color-6);
    width: 100%;
    max-width: none;
    transition: 0.5s;
    font-weight: bold;
}

#opcoes_certificado {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease, background-color 0.4s ease;
}

#opcoes_certificado.expanded {
    max-height: 500px;
    height: 440px;
    /* Altura total do elemento expandido */
}

#icon-eye {
    display: none;
    transition: 1s;
}

#icon-eye-slash {
    display: none !important;
    transition: 1s;
}

#icon-eye.active,
#icon-eye-slash.active {
    display: flex !important;
    position: absolute;
    top: 50%;
    bottom: 50%;
    right: -4px;
    color: #003eb3;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border-radius: 10px;
    transition: 0.8s;
    width: 30px;
    height: 30px;

    padding: 2px;
    cursor: pointer;
    z-index: 1;
    transition: 1s;
}

#icon-eye:hover,
#icon-eye-slash:hover,
#icon-eye.passOver,
#icon-eye-slash.passOver {
    color: #003eb3;
    transform: translate(-50%, -50%);
    background-color: #e6eeff;
    transition: 1s;
}

#message-list {
    color: gray !important;
    padding-left: 20px;
}

.green {
    color: rgb(27, 141, 27) !important;
}

#message-list li {
    list-style-type: disc;
}

#message-list li.active {
    color: gray !important;
    padding-left: 20px;
}

@media (max-width: 768px) {
    #dispositivo-imagem {
        height: auto;
    }
}
