.fix-align {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap; /* Ensures elements stay in one line on desktop */
    gap: 10px; /* Space between elements */
}

.fix-align-or span {
    margin: 0 10px; /* Adjust spacing for desktop */
}

/* Mobile View */
@media (max-width: 768px) {
    .fix-align {
        flex-direction: column;
        text-align: center;
    }

    .fix-align-or span {
        order: -1;  /* Moves "or" to be above the second button */
        margin: 5px 0;
    }
}