@media (min-width: 769px) {
    .mobile-bottom-buttons {
        display: none;
    }
}
@media (max-width: 768px) {
    .mobile-bottom-buttons {
        width: 100%;
        height: 50px;
        position: fixed;
        bottom: 5px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 99;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }
    .register-btn,.login-btn {
        background: linear-gradient(193deg, #51A7FF 0%, #106EF0 100%);
        width: 45%;
        line-height: 50px;
        text-align: center;
        color: #FFFFFF;
    }
}