﻿
.split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split-left {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-8);
    position: relative;
    overflow: hidden;
}

    .split-left::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: -200px;
        right: -200px;
    }

.split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-8);
    background: var(--light);
}

.login-content {
    max-width: 500px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.login-form-wrapper {
    width: 100%;
    max-width: 450px;
    background: var(--white);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.partner-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-8) auto;
    font-size: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 968px) {
    .split-screen {
        grid-template-columns: 1fr;
    }

    .split-left {
        display: none;
    }
}

