* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.left-panel {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    position: relative;
}

.logo {
    position: absolute;
    top: 0px;
    left: 20px;
}

.logo-icon {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Included based on previous intent; ensure the HTML element exists */
.logo-text {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.login-content {
    width: 100%;
    max-width: 400px;
}

.welcome-text {
    color: #666;
    font-size: 16px;
    margin-bottom: 8px;
}

.title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.login-button {
    width: 100%;
    background: #0061d5;
    color: white;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 97, 213, 0.2);
}

.login-button:hover {
    background: #004ea3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 97, 213, 0.3);
}

.login-button:active {
    transform: translateY(0);
}

.features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 14px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0061d5;
    font-size: 12px;
}

.right-panel {
    display: flex;
    background: rgb(0, 0, 0);
    flex-direction: column; /* Stack images vertically */
    align-items: center;    /* Center images horizontally within the panel */
    justify-content: space-around; /* Distribute vertical space around images */
    /* Use 'center' if you prefer them packed together */
    padding: 1rem; /* Optional: adds some space around the images */
    box-sizing: border-box;
    /* If .right-panel needs to take a specific height, define it here,
       e.g., height: 100vh; or ensure its parent flex container allows it to stretch. */
}

.panel-image {
    max-width: 100%;    /* Ensures image is not wider than the panel */
    max-height: 45vh;   /* Limits each image's height to 45% of the viewport height.
                               Adjust this value as needed. For example, if you have
                               padding in .right-panel, you might use
                               calc(50vh - 1rem - [any-other-vertical-spacing])
                               if .right-panel itself is intended to be 100vh.
                               Using vh directly helps images scale with viewport. */
    object-fit: contain;/* Scales the image down to fit within the bounds,
                               maintaining aspect ratio without cropping. */
    display: block;     /* Good practice for images to remove potential extra space */
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .right-panel {
        display: none;
    }

    .left-panel {
        padding: 40px 20px; /* Note: This padding is different from the non-media query .left-panel */
        /* You might want to make them consistent or ensure this is the desired responsive behavior */
    }
}