body {
    background-color: #5D3786;
    color: #F9DC5C;
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column; /* Change to column to accommodate footer */
    justify-content: center;
    align-items: center;
    background-image: url("https://sfads.b-cdn.net/lgu-assets/bldg_outline.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

@media (max-width: 768px) {
    body {
        background-image: none; /* Hide background image on smaller screens */
    }

    .footer-description{
        display: none;
    }
}

.login-container {
    background-color: rgba(52, 33, 79, 0.9); /* Use rgba for better transparency control */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 90%; /* Adjusted width for smaller screens */
    text-align: center;
}

.login-container h2 {
    color: #97D8EA;
    font-weight: bold;
    margin-bottom: 0;
}

.form-control {
    border: none;
    color: #000000;
}

.btn-custom {
    background-color: #F9DC5C;
    color: #34214F;
    border: none;
}

.btn-custom:hover {
    background-color: #f0c548;
}

.map-image {
    width: 100%;
    margin-bottom: 2rem;
}

footer {
   /* background-color: rgba(52, 33, 79, 0.9); */
    color: #F9DC5C;
    padding: 20px;
    text-align: center;
    width: 100%;
    margin-top: auto; /* Push footer to the bottom */
}

footer img {
    width: 400px; /* Adjust the logo size */
}

footer p {
    margin-top: 10px; /* Optional: Add spacing for any text */
    color: #F9DC5C; /* Match the footer text color */
    font-size: 0.9rem; /* Slightly smaller text */
}
