body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}
    
.login-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}
 
.left-panel {
    flex: 100px;
    /* 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: 5 1 200px;
    padding: 40px;
}

/* @media (max-width: 768px) {
    .right-panel{
        padding: 20px
    }
    .left-panel{
        display: none;
    }
} */