body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('../templates/gfx/BG2.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

.login-container {
    text-align: center;
    border-radius: 12px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0);
}

.login-container img {
    width: 250px;
    margin-bottom: 10px;
}

.login-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #003366;
}

.login-container form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-container input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.login-container button {
    padding: 10px;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-container button:hover {
    background-color: #e6b800;
}

.login-container .extra-options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 10px;
    color: #003366;
}

/* Footer Container Styling */
.footer-container {
    width: 90%;
    max-width: 380px;
    background-color: rgba(255, 255, 255, 0.9); /* 90% opacity white */
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}

#footer p {
    font-size: 14px;
    color: #003366;
}

