body.login-body {
    margin: 0; padding: 0; font-family: 'Poppins', sans-serif;
    display: flex; height: 100vh;
}
.login-left {
    width: 60%;
    position: relative;
    color: white;
    background: url('https://app.jgaqua.com/assets/img/bg5.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}
.login-left::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0, 0.7), rgba(0,0,0, 0.8));
}
.welcome-message { position: relative; z-index: 1; }
.welcome-message h1 { font-size: 3rem; font-weight: 600; }
.welcome-message p { font-size: 1.2rem; font-weight: 300; max-width: 500px; margin-top: 15px; }

.login-right {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f7f6;
}
.login-form-container { width: 100%; max-width: 400px; padding: 20px; }
.login-logo { text-align: center; margin-bottom: 30px; }
.login-logo img { max-width: 150px; }
.login-form-container h2 { text-align: center; margin-bottom: 25px; color: #333; font-weight: 600; }
.form-control { border-radius: 8px; }