html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

/* Left Panel */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background-color: #fafafa;
    z-index: 1;
}

/* Right Panel */
.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 75%;
    height: 100%;
    background-image: url('zebra.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    z-index: 2;
}

/* Logo */
.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Copyright section */
.copyright-section {
    position: absolute;
    bottom: 15px;
    left: 30px;
    right: 75%;
    z-index: 3;
    padding-right: 30px;
}

.copyright-line {
    border-top: 1px solid #CCC;
    margin-left: -30px;
    margin-bottom: 8px;
    width: 120%;
}

.copyright {
    font-size: 0.8em;
    font-weight: bold;
    text-align: left;
    color: #072a58;
}

/* Login Box */
.login-box {
    position: absolute;
    top: 50%;
    left: calc(25% - 180px);
    transform: translateY(-50%);
    width: 400px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    z-index: 4;
    overflow: hidden;
}

.login-header {
    background-color: #1ab63f;
    color: #fff;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 1.1em;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.user-icon {
    margin-right: 8px;
    font-size: 1.2em;
    vertical-align: middle;
    color: #fff;
}

.login-body {
    padding: 20px;
    position: relative;
}

.login-body p {
    font-size: 0.9em;
    font-weight: 600;
    color: #191e50;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 15px;
    display: table;
    width: 100%;
}

.input-group label {
    display: table-cell;
    width: 90px;
    font-size: 0.85em;
    color: #191e50;
    vertical-align: middle;
    padding-right: 10px;
    font-weight: bold;
}

.input-field-with-icon {
    display: table-cell;
    position: relative;
    width: 100%;
}

.input-group input[type="text"],
.input-group input[type="password"] {
    width: 100%;
    padding: 10px;
    padding-right: 60px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: #FFFCEF;
}

.input-group.focused input {
    border-color: #1ab63f;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #888;
}

.sign-in-button {
    background-color: #082955;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    cursor: pointer;
    float: right;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.sign-in-button:hover {
    background-color: #103468;
}

.login-footer-border {
    clear: both;
    background-color: #eceaea;
    border-top: 1px solid #e6e3e3;
    margin: 10px -20px 0 -20px;
    padding-top: 40px;
    height: 10px;
}


@media screen and (max-width: 768px) {
    body {
        overflow: auto;
    }

    .container::before,
    .container::after {
        display: none;
    }

    .login-box {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 90%;
        max-width: 360px;
        margin: 40px auto;
        box-shadow: none;
        border-radius: 0;
    }

    .logo {
        position: relative;
        top: auto;
        left: auto;
        margin: 20px auto;
        text-align: center;
    }

    .logo img {
        height: 35px;
    }

    .copyright-section {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 30px auto 10px auto;
        padding: 0 20px;
        text-align: center;
    }

    .copyright-line {
        margin-left: 0;
        width: 100%;
    }

    .sign-in-button {
        width: 100%;
        float: none;
    }

    .input-group {
        display: block;
    }

    .input-group label {
        display: block;
        margin-bottom: 5px;
    }

    .input-field-with-icon {
        display: block;
    }
}
