body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}
    
.login-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}
 
.left-panel {
    flex: 1;
    background: url('https://via.placeholder.com/500x600') center/cover no-repeat;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.left-panel p {
    font-size: 1.2rem;
}

.right-panel {
    flex: 2;
    padding: 100px;
}