:root {
    --primary-color: #379e40;
    --dark-color: #333;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: white;
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

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

.left-side {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 640px;
}

.logo-container img {
    height: 90px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    margin-bottom: 2rem;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
}

.griehser-container {
    margin-top: 3rem;
}

.griehser-container img {
    height: 40px;
}

.divider {
    width: 1px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(55, 158, 64, 0.3);
}

.right-side {
    flex: 1;
    height: 100%;
    background-image: url('../images/background.jpeg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 992px) {
    .right-side, .divider {
        display: none;
    }

    .split-container {
        height: auto;
        min-height: 100vh;
    }

    .left-side {
        max-width: 100%;
        height: auto;
        min-height: 100vh;
    }
}
