
/* --------------------------------------
   SPLIT SCREEN AUTH PAGES (FRAMELESS)
   -------------------------------------- */

.split-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

/* Left Side: Branding and Background Animations */
.split-left {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
}

.split-left .bg-shape {
    /* Keep the shapes from escaping the left side */
    position: absolute; 
    z-index: 0;
}

.split-left-content {
    position: relative;
    z-index: 10;
    max-width: 500px;
}

.split-left-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-left-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.split-logo {
    position: absolute;
    top: 2rem;
    left: 4rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    z-index: 20;
}
.split-logo i { color: var(--primary-color); }

/* Right Side: Frameless Form Area */
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white; /* Clean, frameless white background */
    padding: 4rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.03); /* Subtle separation shadow */
    position: relative;
    z-index: 10;
}

.split-form-container {
    width: 100%;
    max-width: 450px;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.split-header {
    margin-bottom: 2.5rem;
}

.split-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.split-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auth Navigation Buttons in Split View */
/* Removed Top Right navigation buttons on request */

/* Responsive Split Layout */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
        background: white;
    }
    
    .split-left {
        padding: 2rem;
        flex: 0 0 auto;
        background: transparent;
    }
    
    .split-logo {
        position: static;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .split-left-content, 
    .split-left .bg-shape {
        display: none;
    }
    
    .split-right {
        padding: 2rem 2rem 4rem;
        box-shadow: none;
        align-items: flex-start;
    }
    
    .split-header h2 { font-size: 2rem; }
}
