body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    height: 100%;
    background-color: #f2f6fc;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.left-panel {
    width: 50%;
    background-color: #dfe9f3;
}

    .left-panel img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.right-panel {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center; /* Vertical center */
    height: 100px; /* Adjust based on header height */
    width: 100%;
}

.main-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Space between image and text */
    font-size: 1.5rem; /* Scales the text */
    color: #007bff;
    font-weight: bold;
}

.logo-img {
    height: 40px; /* Standard logo height */
    width: auto; /* Maintain aspect ratio */
    display: block;
}

.login-form {
    width: 100%;
    max-width: 350px;
}

.form-group {
    display: flex;
    align-items: center;
    background-color: #f0f4fa;
    margin-bottom: 15px;
    border-radius: 5px;
    padding: 10px;
}

    .form-group i {
        margin-right: 10px;
        color: #333;
    }

    .form-group input {
        border: none;
        background: transparent;
        outline: none;
        width: 100%;
        font-size: 16px;
    }

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

    button:hover {
        background-color: #0056b3;
    }

.powered-by {
    margin-top: 40px;
    text-align: center;
    color: #999;
}

.powered-logo {
    font-size: 16px;
    color: #888;
    margin-top: 5px;
}

.login input {
    display: block;
    padding: 10px 10px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 12px;
    border: 1px solid #ddd;
    transition: border-width 0.2s ease;
    border-radius: 2px;
    color: #000;
}

    .login input + i.fa {
        color: #fff;
        font-size: 1em;
        position: absolute;
        margin-top: -40px;
        opacity: 0;
        left: 0;
        transition: all 0.1s ease-in;
    }

    .login input:focus {
        outline: none;
        color: #444;
        border-color: #00bcbe;
        border-left-width: 35px;
    }

        .login input:focus + i.fa {
            opacity: 1;
            left: 30px;
            transition: all 0.25s ease-out;
        }

.login a {
    font-size: 0.8em;
    color: #00bcbe;
    text-decoration: none;
}
