#login-card {
    background-image: url('../images/all-bg.jpg');
    background-size: contain;
}

.icon-container {
    height: 2.65rem;
    border-radius: 0.375rem 0 0 0.375rem;
}

.remove-focus:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.3);
}

/* Optional: Add custom styling */
#floating-cart {
    transition: transform 3s ease, opacity 3s ease, width 3s ease, height 3s ease;
    width: 300px; /* Initial width */
    height: auto; /* Adjust height based on content */
    transform: translateY(0); /* Ensure initial position is set */
}
#floating-cart.minimized {
    width: 300px; /* Set minimized width */
    height: 80px; /* Set minimized height to only show title and checkout button */
    overflow: hidden; /* Hide overflow content */
    transform: translateY(50px); /* Adjust position if needed */
}