/* By default, hide desktop content */
.desktop-content {
    display: none;
}

/* Show mobile content on small screens (mobile) */
@media (max-width: 767px) {
    .mobile-content {
        display: block;
    }

    .desktop-content {
        display: none;
    }
}

/* Show desktop content on larger screens (tablet/desktop) */
@media (min-width: 768px) {
    .desktop-content {
        display: block;
    }

    .mobile-content {
        display: none;
    }
}

@media (min-width: 1024px) {
    .desktop-content {
        display: block;
    }

    .mobile-content {
        display: none;
    }
}

#emailValidationErrorMsg,
#emailValidationSuccessMsg {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* When visible */
#emailValidationErrorMsg.show,
#emailValidationSuccessMsg.show {
    display: block;
    opacity: 1;
}

.db-hero {
    margin-bottom: 1.5rem;
    height: unset;
}

footer {
    margin-top: 1.5rem;
    border-top: 1px solid #b0bbc6 !important;
}
