#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


@media (max-width: 768px) {
    #login-col-first {
        display: none !important; /* Ẩn cột đầu tiên trên màn hình nhỏ */
    }
}

#qrCodeContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Đảm bảo phần tử con chiếm toàn bộ chiều cao */
    text-align: center;
}

/*.fixed-payment {*/
/*    position: fixed;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    background: white; !* Giữ màu nền *!*/
/*    box-shadow: 0 -2px 5px rgba(0,0,0,0.1); !* Hiệu ứng đổ bóng *!*/
/*    padding: 15px;*/
/*    text-align: center;*/
/*    z-index: 1050; !* Đảm bảo nằm trên cùng *!*/
/*}*/