/* Modern Split Auth Layout */
.auth-split-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

.auth-info-side {
    flex: 1;
    min-width: 350px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-side {
    flex: 1;
    min-width: 350px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typography & Visuals */
.auth-info-side h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.darkmode--activated .auth-info-side h1 {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-info-side p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.darkmode--activated .auth-info-side p {
    color: #94a3b8;
}

.auth-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
}

/* Form Styling - Clean & No Frame */
.transparent-form-group {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.darkmode--activated .transparent-form-group {
    background: rgba(30, 41, 59, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.auth-input {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    width: 100%;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.darkmode--activated .auth-input {
    background: rgba(15, 23, 42, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.auth-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
}

/* Responsive Tweak */
@media (max-width: 992px) {
    .auth-split-container {
        flex-direction: column;
        padding: 1rem;
    }

    .auth-info-side,
    .auth-form-side {
        width: 100%;
        padding: 1.5rem;
        text-align: center;
    }

    .auth-info-side h1 {
        font-size: 2.5rem;
    }

    .auth-image {
        margin: 0 auto 2rem;
        max-width: 250px;
    }
}