/* General reset for margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login_body {
    display: flex;
    font-family: Arial, sans-serif;
    width: 100vw;
    height: 100vh;
    background-color: #f0f0f0;
}

/* Additional login styless */
.login-container {
    display: flex;
    width: 50%;
    height: 100%;
    background-color: #fff;
    flex-direction: column;
}

.login-details {
    width: 100%;
    height: 50%;
    margin: 10% 0 auto 4%;
}

.login_header_text {
    font-family: Inter, sans-serif;
    font-size: 2vw;
    font-weight: bold;
}

.form-group label {
    display: block;
    font-family: Inter, sans-serif;
    font-weight: bold;
    font-size: 1vw;
    margin-top: 3%;
    padding-left: 0.7%;
    padding-bottom: 0.2%;
}

.form-group input {
    display: flex;
    width: 60%;
    box-sizing: border-box;
    padding: 2.5%;
    font-size: 1vw;
    font-family: Inter, sans-serif;
    font-weight: 400;
    color: #939393;
    border: none;
    border-radius: 1vw;
    background-color: #EDEDED;
}

.error-package {
    position: relative;
}

.error-message {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: red;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.login-button {
    width: 19%;
    padding: 2%;
    background-color: #8A0000;
    color: #fff;
    border: none;
    border-radius: 0.5vw;
    cursor: pointer;
    font-weight: bold;
    margin-top: 3%;
    font-size: 1vw;
}

    .login-button:hover {
        background-color: darkred;
        box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.8);
    }

.image-container {
    width: 50%;
    height: 100%; /* Adjust the height as needed, 100vh sets it to the full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensures the image doesn't overflow the div */
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image covers the entire div */
    }

/* Site Footer */
.site-footer {
    display: flex;
    width: 100%;
    height: 7%;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    margin-top: auto; /* Push footer to bottom */
    margin-bottom: 0;
}

.logo_container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 41%;
    height: 95%;
    padding: 0.5% 0;
    margin-left: 2%;
}

.footer-logo {
    width: 100%;
    height: 80%;
}

.copyright-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 68%;
    height: 100%;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 0.75vw;
    margin-right: 0;
    margin-left: auto;
}

    .copyright-text span {
        text-align: center;
        padding-top: 0.2%;
    }
