/* =====================================================
   SELLER APPLICATION FORM
   SoftStore.App
===================================================== */

.seller-apply-page{
    padding:28px 0 70px;
}

.seller-apply-hero{
    margin-bottom:26px;
}

.seller-apply-hero-card{
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(circle at top left, rgba(37,99,235,0.14), transparent 34%),
        radial-gradient(circle at bottom right, rgba(14,165,233,0.12), transparent 32%),
        #ffffff;

    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:46px 42px;

    box-shadow:0 18px 50px rgba(15,23,42,0.06);
}

.seller-apply-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;
    margin-bottom:18px;

    border-radius:999px;
    background:#eff6ff;
    color:#2563eb;

    font-size:13px;
    font-weight:700;
}

.seller-apply-hero h1{
    max-width:880px;
    margin:0 0 16px;

    font-size:42px;
    line-height:1.15;
    font-weight:800;
    color:#0f172a;
    letter-spacing:-0.03em;
}

.seller-apply-hero p{
    max-width:780px;
    margin:0;

    color:#475569;
    font-size:17px;
    line-height:1.7;
}


/* =====================================================
   LAYOUT
===================================================== */

.seller-apply-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 360px;
    gap:24px;
    align-items:start;
}

.seller-apply-card,
.seller-apply-side-card{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:22px;
    box-shadow:0 14px 40px rgba(15,23,42,0.05);
}

.seller-apply-card{
    padding:30px;
}

.seller-apply-section{
    padding:0 0 26px;
    margin:0 0 26px;
    border-bottom:1px solid #e5e7eb;
}

.seller-apply-section:last-of-type{
    border-bottom:0;
    margin-bottom:0;
    padding-bottom:0;
}

.seller-apply-section-title{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:20px;
}

.seller-apply-step{
    flex:0 0 auto;

    width:34px;
    height:34px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#2563eb;
    color:#ffffff;

    font-size:14px;
    font-weight:800;
}

.seller-apply-section-title h2{
    margin:0 0 4px;

    color:#0f172a;
    font-size:22px;
    line-height:1.25;
    font-weight:800;
}

.seller-apply-section-title p{
    margin:0;

    color:#64748b;
    font-size:14px;
    line-height:1.55;
}


/* =====================================================
   FORM FIELDS
===================================================== */

.seller-apply-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.seller-apply-field{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.seller-apply-field.full{
    grid-column:1 / -1;
}

.seller-apply-field label{
    color:#0f172a;
    font-size:14px;
    font-weight:700;
}

.seller-apply-required{
    color:#ef4444;
}

.seller-apply-field input,
.seller-apply-field select,
.seller-apply-field textarea{
    width:100%;

    border:1px solid #cbd5e1;
    border-radius:14px;

    background:#ffffff;
    color:#0f172a;

    font-size:15px;
    line-height:1.4;

    outline:none;
    transition:0.2s ease;
}

.seller-apply-field input,
.seller-apply-field select{
    min-height:50px;
    padding:0 15px;
}

.seller-apply-field textarea{
    min-height:116px;
    padding:14px 15px;
    resize:vertical;
}

.seller-apply-field input:focus,
.seller-apply-field select:focus,
.seller-apply-field textarea:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.12);
}

.seller-apply-field input::placeholder,
.seller-apply-field textarea::placeholder{
    color:#94a3b8;
}

.seller-apply-hint{
    color:#64748b;
    font-size:12px;
    line-height:1.45;
}

.seller-apply-counter{
    display:flex;
    justify-content:flex-end;

    color:#64748b;
    font-size:12px;
}


/* =====================================================
   CHECKBOX CARDS
===================================================== */

.seller-apply-checks{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
}

.seller-apply-check{
    position:relative;

    display:flex;
    align-items:center;
    gap:10px;

    min-height:48px;
    padding:12px 14px;

    border:1px solid #e2e8f0;
    border-radius:14px;

    background:#f8fafc;
    color:#334155;

    font-size:14px;
    font-weight:600;

    cursor:pointer;
    transition:0.2s ease;
}

.seller-apply-check:hover{
    border-color:#bfdbfe;
    background:#eff6ff;
}

.seller-apply-check input{
    width:18px;
    height:18px;
    accent-color:#2563eb;
}

.seller-apply-check input:disabled + span{
    opacity:0.55;
}


/* =====================================================
   CONSENT / CAPTCHA / BUTTON
===================================================== */

.seller-apply-consent{
    display:flex;
    gap:12px;
    align-items:flex-start;

    padding:16px;

    border-radius:16px;
    background:#f8fafc;
    border:1px solid #e2e8f0;

    color:#475569;
    font-size:14px;
    line-height:1.55;
}

.seller-apply-consent input{
    width:18px;
    height:18px;
    margin-top:2px;

    accent-color:#2563eb;
    flex:0 0 auto;
}

.seller-apply-consent a{
    color:#2563eb;
    font-weight:700;
    text-decoration:none;
}

.seller-apply-consent a:hover{
    text-decoration:underline;
}

.seller-apply-captcha{
    margin-top:20px;
}

.seller-apply-submit{
    width:100%;
    min-height:56px;
    margin-top:22px;

    border:0;
    border-radius:16px;

    background:linear-gradient(135deg, #2563eb, #0ea5e9);
    color:#ffffff;

    font-size:16px;
    font-weight:800;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    box-shadow:0 14px 32px rgba(37,99,235,0.24);
    transition:0.2s ease;
}

.seller-apply-submit:hover{
    transform:translateY(-1px);
    box-shadow:0 18px 38px rgba(37,99,235,0.3);
}

.seller-apply-submit:active{
    transform:translateY(0);
}


/* =====================================================
   SIDE BLOCK
===================================================== */

.seller-apply-side{
    position:sticky;
    top:18px;

    display:flex;
    flex-direction:column;
    gap:18px;
}

.seller-apply-side-card{
    padding:22px;
}

.seller-apply-side-card h3{
    margin:0 0 12px;

    color:#0f172a;
    font-size:18px;
    font-weight:800;
}

.seller-apply-side-card p{
    margin:0;

    color:#64748b;
    font-size:14px;
    line-height:1.6;
}

.seller-apply-list{
    display:flex;
    flex-direction:column;
    gap:12px;

    margin-top:14px;
}

.seller-apply-list-item{
    display:flex;
    align-items:flex-start;
    gap:10px;

    color:#334155;
    font-size:14px;
    line-height:1.45;
}

.seller-apply-list-item i{
    color:#2563eb;
    margin-top:2px;
}

.seller-apply-mini-link{
    display:inline-flex;
    align-items:center;
    gap:8px;

    margin-top:16px;

    color:#2563eb;
    text-decoration:none;

    font-weight:800;
    font-size:14px;
}

.seller-apply-mini-link:hover{
    text-decoration:underline;
}


/* =====================================================
   SUCCESS PAGE
===================================================== */

.seller-apply-success{
    min-height:560px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:50px 0;
}

.seller-apply-success-card{
    width:100%;
    max-width:680px;

    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:24px;

    padding:44px 34px;

    text-align:center;

    box-shadow:0 18px 50px rgba(15,23,42,0.08);
}

.seller-apply-success-icon{
    width:72px;
    height:72px;

    margin:0 auto 20px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;
    background:linear-gradient(135deg, #16a34a, #22c55e);

    font-size:34px;

    box-shadow:0 14px 30px rgba(34,197,94,0.28);
}

.seller-apply-success-card h1{
    margin:0 0 14px;

    color:#0f172a;
    font-size:34px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:-0.02em;
}

.seller-apply-success-card p{
    max-width:520px;
    margin:0 auto 26px;

    color:#64748b;
    font-size:16px;
    line-height:1.7;
}

.seller-apply-success-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.seller-apply-success-btn{
    min-height:48px;
    padding:0 20px;

    border-radius:14px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    font-size:14px;
    font-weight:800;
    text-decoration:none;
}

.seller-apply-success-btn.primary{
    background:#2563eb;
    color:#ffffff;
}

.seller-apply-success-btn.secondary{
    background:#eff6ff;
    color:#2563eb;
}

.seller-apply-success-btn:hover{
    opacity:0.92;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1024px){

    .seller-apply-layout{
        grid-template-columns:1fr;
    }

    .seller-apply-side{
        position:static;
    }
}

@media(max-width:768px){

    .seller-apply-page{
        padding:18px 0 48px;
    }

    .seller-apply-hero-card{
        padding:30px 22px;
        border-radius:20px;
    }

    .seller-apply-hero h1{
        font-size:30px;
    }

    .seller-apply-hero p{
        font-size:15px;
    }

    .seller-apply-card{
        padding:22px 16px;
        border-radius:18px;
    }

    .seller-apply-grid,
    .seller-apply-checks{
        grid-template-columns:1fr;
    }

    .seller-apply-section-title h2{
        font-size:19px;
    }

    .seller-apply-success-card{
        padding:34px 18px;
        border-radius:20px;
    }

    .seller-apply-success-card h1{
        font-size:26px;
    }

    .seller-apply-success-actions{
        flex-direction:column;
    }

    .seller-apply-success-btn{
        width:100%;
    }
}

@media(max-width:480px){

    .seller-apply-hero-card{
        padding:26px 18px;
    }

    .seller-apply-hero h1{
        font-size:26px;
    }

    .seller-apply-section-title{
        gap:10px;
    }

    .seller-apply-step{
        width:30px;
        height:30px;
        border-radius:10px;
        font-size:13px;
    }

    .seller-apply-field input,
    .seller-apply-field select{
        min-height:48px;
    }

    .seller-apply-submit{
        min-height:54px;
    }
} 