.background-mobile {
    height: auto !important;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.content {
    position: relative;
    z-index: 2;
}
.right-content {
    padding-bottom: 20rem;
}
.no-space-fields {
    margin-top: 0px !important;
}
.left-content {
    padding-top: 7rem;
}

/* Estilização personalizada para o checkbox */
.custom-checkbox {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #ffffff;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.custom-checkbox-indicator {
    position: relative;
    width: 100%;
    height: 100%;
}
.custom-checkbox input[type="checkbox"]:checked + .custom-checkbox-indicator::before {
    content: '\2714';
    color: #ffffff;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.custom-hidden { display: none; }
.custom-visible { display: block; }