.login-page {
    display: flex;
    height: 70vh;  /* Full screen height */
    background: khaki; /* Fallback color */
    background-image: url("../images/background-image.png");
    background-repeat: repeat; /* Repeat the small image */
    background-size: auto; /* Maintain original image size */
    background-position: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Left-aligned Login Container */
.login-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    max-width:100%;
}

/* Proper Styling for Login Form */
.login-form {
    background: rgba(255, 255, 255, 0.6);  /* White with 80% opacity */
    /*background: white;*/
    padding: 30px;
    border-radius: 10px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: black;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
    background: white;
    color: black;
}

/* Ensure Submit Button is Styled Correctly */
.button-group {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.btn-primary {
    background: #0073b1;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    width: auto;
}

.btn-primary:hover {
    background: #005f8b;
}

/* Additional Links Below Form */
.login-form-links {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

.login-form-links a {
    display: block;
    color: #000000;
    text-decoration: none;
    margin-top: 5px;
    font-size: 10px;
}

.login-form-links a:hover {
    text-decoration: underline;
    font-size: 16px;

}

.login-bottom-container {
    width: 100%;
    height: 30vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    padding: 20px;
    display: flex;
    justify-content: space-around;  /* Even spacing for three columns */
    align-items: center;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}
/* Three Column Layout */
.bottom-section {
    flex: 1;
    text-align: center;
    padding: 10px;
}
/* Section Titles */
.bottom-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
/* Section Content */
.bottom-section p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
/* Bottom Section Links */
.bottom-section a {
    color: #0073b1;  /* Match theme color */
    text-decoration: none;
    font-weight: bold;
}
.bottom-section a:hover {
    text-decoration: underline;
}


/* Right Side: Image */
.login-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;  /* Ensure it fits 98% of login-page */
    object-fit: contain;
    overflow: hidden;
    max-height: 100%; /* 98% of viewport height */
    max-width: 100%;
}

.login-image img {
    width: auto;  /* Maintain aspect ratio */
    max-height: 70vh; /* 98% of viewport height */
    max-width: 100%;
    object-fit:contain;
    border-radius: 8px;
    /*box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);*/
    object-fit: cover; /* Ensure full coverage */
    opacity: 0.6; /* Make the image blend into the background */
}

