  
/* Ensure header and footer take full width */
header, footer {
    width: 100%;
    flex-shrink: 0;
}

/* Main content should take up remaining space */
.main-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    height: 70vh;
}
.container-full{
    display: flex;
    height: 70vh;
}


/* Unique container for login box */
.login-container {
    display: flex;
    flex-direction: row; /* Side-by-side layout */
    background-color:white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 800px; /* Fixed width for login box */
    max-width: 90%; /* Ensures responsiveness */
}

/* Form Section */
.form-container {
    padding: 40px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Input fields */
.form-container input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Login Button */
.form-container .btn {
    width: 100%;
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

/* Image Section */
.image-container {
    width: 50%;
    background-color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        text-align: center;
    }

    .form-container, .image-container {
        width: 100%;
    }

    .image-container img {
        max-width: 60%;
        margin-top: 20px;
    }
}
