body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Change font family as needed */
    color: white; /* Text color for better visibility on the background */
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1; /* Ensure background is behind other content */
}

.container {
    padding: 20px;
    display: flex;
    flex-direction: column;
}


.login-button {
    width:100px;
    margin-bottom: 10px;
    padding: 12px 24px; /* Adjust padding for mobile */
    background-color: transparent; /* Transparent background */
    color: #fff; /* White text color */
    border: 2px solid #fff; /* White border */
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: rgba(255, 255, 255, 0.3); /* White background with 30% opacity on hover */
}

/* Mobile background */
@media (max-width: 500px) {
    .background {
        background-image: url('../img/mobile-background.jpg');
    }
}

/* Larger screen background */
@media (min-width: 501px) {
    .background {
        background-image: url('../img/desktop-background.jpg');
    }
}