body {
    background-color: black;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

/* Define the background image and styles */
.bg-image {
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    height: 100vh; /* Set the background height to fill the viewport */
    /*  margin-top: -100px; Offset the logo margin */
    position: relative;
}

/* Style for the logo image */
.logo {
    display: block;
    margin: 10px auto 0; /* 100px top margin, centered horizontally */
    max-width: 100%; /* Adjust the maximum width as needed */
}



/* Style for the card */
.card {
    background-color: rgba(255, 239, 198, 0.9); /* 70% transparent white background */
    max-width: 80%; /* Set the maximum width of the card */
    margin: 0px auto 0; /* Adjust the top margin as needed */
    padding: 20px;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow */
}

.footer {
			
            color: #fff;
            text-align: center;
            padding: 30px 0;
        }

        .footer img {	
            max-width: 200px;
        }
