body{
    width: 768px;
    margin: 0 auto;
    
}

.bg-gray-light{
    background-color: rgba(226, 226, 226, 0.89);
}

.bg-white-light{
    background-color: #cfcfcf73;
}

.menu-custom{
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
	
	z-index: 100;
}

.menu-custom .menu-item-custom{
    color: black;
    
}

.active-custom{
    color:#dc3545 !important ;
}

.border-gray-subtle{
    border-color: #dfdfdf9c;
}

.bg-login{
    background-image: url('/User/assets/photo/bg-login3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.bg-login::before {
    content: ""; /* Bắt buộc để hiển thị */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.904);
    z-index: -1;
}

.account{
    background-image: url('/User/assets/photo/account-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 150px;
}

.bank-card{
    background-image: url('/User/assets/photo/bank-card.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 320px;
    width: 100%;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.logo-animation {
    animation: zoomIn 0.5s ease-out;
}


.preview-container {
    width: 100%;
    height: 160px;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    overflow: hidden;
}

.preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.success-icon {
    font-size: 50px;
    animation: spinZoom 1s ease-in-out;
}

@keyframes spinZoom {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

@media screen and (max-width: 768px) {
    body{
        width: 100%;
    }

    

    .bank-card{
        background-image: url('/User/assets/photo/bank-card.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 200px;
        width: 100%;
    }
}

