/* =========================================
       SIGNUP PAGE CUSTOM STYLES
       Scoped with 'su-' prefix to avoid conflicts
       ========================================= */
    :root {
        --su-color-primary: #5334D1; /* AiPSoft Purple */
        --su-color-primary-dark: #3f26a8;
        --su-color-secondary: #C5299D; /* AiPSoft Pink */
        --su-color-dark: #0A0045;
        --su-color-light: #F8FAFC;
        --su-color-text: #475569;
        --su-color-white: #ffffff;
        --su-gradient-brand: linear-gradient(to right, #5334D1, #C5299D);
    }

    /* HEADER SEPARATION FIX - Increased top padding */
    .su-section {
        padding: 160px 0 80px; /* Increased top padding further to 160px */
        min-height: 100vh;
        display: flex;
        align-items: center;
        background-color: white;
    }

    .su-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .su-layout {
        display: flex;
        align-items: flex-start;
        gap: 60px;
        flex-wrap: wrap;
    }

    /* Left Panel Styles */
    .su-visual-panel {
        flex: 1;
        min-width: 350px;
        background: var(--su-color-light);
        padding: 40px;
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        overflow: hidden; /* Ensures contents stay inside the left side */
    }

    .su-img-box {
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 25px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        border: 1px solid #e2e8f0;
    }

    .su-img-box img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

    /* Review Slider Constrained inside Left Side */
    .su-review-slider {
        margin-top: 10px;
        width: 100%;
        max-width: 100%;
        position: relative;
    }

    .su-review-card {
        background: white;
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(10, 0, 69, 0.04);
        border: 1px solid rgba(226, 232, 240, 0.6);
        margin: 10px 5px 20px; /* Added horizontal margin to prevent edge clipping */
    }

    .su-review-text {
        font-size: 0.95rem;
        font-style: italic;
        color: var(--su-color-text);
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .su-customer-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .su-customer-thumb {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .su-customer-name {
        font-weight: 700;
        color: var(--su-color-dark);
        margin: 0;
        font-size: 0.9rem;
    }

    /* Platform Icons (Refined to match screenshot) */
    .su-platforms {
        display: flex;
        gap: 18px;
        align-items: center;
        opacity: 0.4;
        margin-top: 20px;
        padding-left: 10px;
    }

    .su-platforms i, .su-platforms svg {
        font-size: 18px;
        color: var(--su-color-dark);
    }

    /* Right Panel Styles */
    .su-form-panel {
        flex: 1;
        min-width: 350px;
        padding-top: 20px;
    }

    .su-form-header {
        margin-bottom: 30px;
    }

    .su-form-title {
        font-size: 2.25rem;
        font-weight: 800;
        color: var(--su-color-dark);
        margin-bottom: 10px;
        line-height: 1.2;
    }

    /* Form Fields */
    .su-form-group {
        position: relative;
        margin-bottom: 15px;
    }

    .su-form-group i {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 0.9rem;
    }

    .su-input {
        width: 100%;
        height: 52px;
        padding: 0 20px 0 45px;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        font-size: 0.95rem;
        transition: all 0.3s;
        background: white;
    }

    .su-input:focus {
        outline: none;
        border-color: var(--su-color-primary);
        box-shadow: 0 0 0 4px rgba(83, 52, 209, 0.1);
    }

    .su-select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 18px;
    }

    .su-btn-submit {
        width: 100%;
        height: 52px;
        background: var(--su-color-primary);
        color: white !important;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 10px;
        box-shadow: 0 10px 20px -5px rgba(83, 52, 209, 0.3);
    }

    .su-btn-submit:hover {
        background: var(--su-color-primary-dark);
        transform: translateY(-2px);
    }

    /* Social Sign Up */
    .su-divider {
        position: relative;
        text-align: center;
        margin: 30px 0;
    }
    .su-divider::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #e2e8f0;
        z-index: 1;
    }
    .su-divider span {
        position: relative;
        background: white;
        padding: 0 15px;
        color: #94a3b8;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        z-index: 2;
    }

    .su-social-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .su-social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 50px;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        background: white;
        text-decoration: none !important;
        color: var(--su-color-dark) !important;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s;
    }

    .su-social-btn:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }

    @media (max-width: 991px) {
        .su-section { padding-top: 120px; }
        .su-visual-panel { display: none; }
        .su-form-panel { width: 100%; min-width: 100%; }
        .su-form-title { font-size: 1.75rem; text-align: center; }
        .su-form-header p { text-align: center; }
    }