body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Hide overflow to prevent scrollbars */
    background-color: #f0f0f0; /* Background color for the page */
}

.login-container {
    position: relative;
    z-index: 1; /* Ensure login form is above floating t-shirts */
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}



.floating-tshirts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow clicks to pass through the t-shirts */
}

.tshirt {
    position: absolute;
    pointer-events: auto; /* Enable click events for the t-shirts */
    animation: bounceTshirt 3s infinite alternate, rotateTshirt 4s infinite linear; /* Bouncing and rotating animation */
}

.tshirt img {
    display: block;
    width: 100%;
    height: auto;
}

.tshirt1 {
    top: 0;
    left: 0;
}

.tshirt2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tshirt3 {
    bottom: 0;
    right: 0;
}

/* Animation for bouncing t-shirts */
@keyframes bounceTshirt {
    0% { top: 0; left: 0; }
    25% { top: 0; left: 100%; }
    50% { top: 100%; left: 100%; }
    75% { top: 100%; left: 0; }
    100% { top: 0; left: 0; }
}

/* Animation for rotating t-shirts */
@keyframes rotateTshirt {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
