/* Updated Login Page Styles to match Reference Image */
.lg-login-section {
    padding: 80px 0;
    background: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.lg-login-card {
    background: #fdfaf5;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    max-width: 1244px;
    min-height: 540px;
    margin: 0 auto;
    width: 100%;
    padding: 60px;
    gap: 60px;
    align-items: stretch;
}

.lg-login-left {
    flex: 1;
}

.lg-login-right {
    flex: 1.2;

    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    align-self: stretch;
    font-size: 3rem;
    font-weight: 800;
    color: #000;
}

.lg-login-right img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.lg-login-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
}

.lg-login-title span {
    color: #F05E27;
    white-space: nowrap;
}

.lg-form-group {
    margin-bottom: 20px;
    position: relative;
}

.lg-form-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.lg-form-input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
}

.lg-pass-wrapper {
    position: relative;
}

.lg-pass-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
}

.lg-forgot-pass {
    display: block;
    text-align: right;
    font-size: 13px;
    color: #3498db;
    text-decoration: none;
    margin-top: 8px;
    font-weight: 500;
}

.lg-login-btn {
    background: #F05E27;
    color: #fff;
    border: none;
    padding: 12px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    margin-top: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(240, 94, 39, 0.2);
    transition: all 0.3s ease;
}

.lg-login-btn:hover {
    background: #e05420;
    transform: scale(1.02);
}

.lg-register-link {
    margin-top: 40px;
    font-size: 14px;
    color: #444;
    text-align: left;
}

.lg-register-link a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .lg-login-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 22px;
    }

    .lg-login-section {
        padding: 12px 0 24px;
        min-height: 0;
    }

    .lg-login-card {
        flex-direction: column-reverse;
        padding: 18px 16px 24px;
        gap: 20px;
        min-height: unset;
        border-radius: 16px;
    }

    .lg-login-right {
        min-height: 0;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        align-self: center;
        font-size: 2rem;
    }

    .lg-login-right img {
        max-height: 230px;
        object-fit: contain;
    }

    .lg-login-left .iq-form {
        gap: 14px;
    }

    .lg-login-btn {
        width: 100%;
        margin-top: 8px;
        padding: 13px 24px;
    }

    .lg-register-link {
        margin-top: 22px;
        text-align: center;
    }
}
