/* ================================================================
   ESD Distribution Partner — Frontend Portal Styles
   ================================================================ */

/* ---- Base ---- */
.esdp-portal {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---- Login Notice ---- */
.esdp-portal-login-notice {
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    color: #475569;
}

/* ---- Cards ---- */
.esdp-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    margin-bottom: 20px;
}
.esdp-card h2, .esdp-card h3 {
    margin-top: 0;
    color: #1e293b;
}

/* ---- Join Form ---- */
.esdp-join-wrap {
    max-width: 640px;
    margin: 0 auto;
}
.esdp-join-wrap h2 { font-size: 22px; margin-bottom: 8px; }

/* ---- Portal Header ---- */
.esdp-portal-header {
    margin-bottom: 20px;
}
.esdp-portal-header--dashboard {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    color: #fff;
}
.esdp-portal .esdp-portal-header--dashboard h2,
.esdp-portal .esdp-portal-header--dashboard h2 *,
.esdp-portal-header--dashboard h2,
.esdp-portal-header--dashboard h2 * {
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 2px;
}
.esdp-portal-greeting {
    margin: 0;
    font-size: 13px;
    color: #bfdbfe;
    font-weight: 400;
}
.esdp-portal-greeting strong {
    color: #fff;
    font-weight: 600;
}
.esdp-portal-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}
.esdp-portal-header-top h2 {
    margin: 0;
}
.esdp-portal-header-identity {
    display: flex;
    align-items: center;
    gap: 14px;
}
.esdp-portal-avatar {
    flex-shrink: 0;
}
.esdp-avatar-img,
.esdp-portal-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.35);
    object-fit: cover;
    display: block;
}
.esdp-portal-header-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.esdp-portal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
}
/* Override button colours inside the dark header */
.esdp-portal-header--dashboard .esdp-btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.esdp-portal-header--dashboard .esdp-btn-outline:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.esdp-portal-header--dashboard .esdp-btn-ghost {
    color: #bfdbfe;
    border-color: rgba(255,255,255,.25);
}
.esdp-portal-header--dashboard .esdp-btn-ghost:hover {
    background: rgba(255,255,255,.1);
    color: #fca5a5;
    border-color: rgba(252,165,165,.5);
}
@media (max-width: 540px) {
    .esdp-portal-header--dashboard { padding: 16px; }
    .esdp-portal-header-identity { gap: 10px; }
    .esdp-avatar-img, .esdp-portal-avatar img { width: 40px; height: 40px; }
    .esdp-portal-header-actions { width: 100%; justify-content: flex-end; }
}
.esdp-btn-outline {
    background: transparent;
    color: #1e40af;
    border: 1.5px solid #1e40af;
    text-decoration: none;
}
.esdp-btn-outline:hover {
    background: #eff6ff;
    color: #1e40af;
    text-decoration: none;
}
.esdp-btn-ghost {
    background: transparent;
    color: #64748b;
    border: 1.5px solid #cbd5e1;
    text-decoration: none;
}
.esdp-btn-ghost:hover {
    background: #f1f5f9;
    color: #ef4444;
    border-color: #fca5a5;
    text-decoration: none;
}

/* ---- Notices ---- */
.esdp-notice {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}
.esdp-notice a { font-weight: 600; }
.esdp-notice-warn {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
}
.esdp-notice-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}
.esdp-notice-info a { color: #1d4ed8; }

/* ---- Stats Row ---- */
.esdp-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
@media (max-width: 640px) {
    .esdp-stats-row { grid-template-columns: repeat(2, 1fr); }
}
.esdp-stat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.esdp-stat-card.esdp-stat-highlight {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}
.esdp-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    line-height: 1.2;
}
.esdp-stat-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 4px;
}

/* ---- Tabs ---- */
.esdp-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.esdp-tab-btn {
    padding: 10px 18px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    border-radius: 6px 6px 0 0;
    transition: all .15s;
}
.esdp-tab-btn:hover {
    color: #1e40af;
    background: #f8fafc;
}
.esdp-tab-btn.active {
    color: #1e40af;
    border-bottom-color: #1e40af;
    background: #fff;
    font-weight: 700;
}
.esdp-tab-content { display: none; }
.esdp-tab-content.active { display: block; }

/* ---- Two Column ---- */
.esdp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 640px) {
    .esdp-two-col { grid-template-columns: 1fr; }
}

/* ---- Level Badge ---- */
.esdp-level-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}
.esdp-badge-top {
    color: #065f46;
    font-weight: 600;
    font-size: 13px;
}

/* ---- Progress Bar ---- */
.esdp-progress-wrap { margin-top: 14px; }
.esdp-progress-label {
    font-size: 13px;
    color: #475569;
    margin-bottom: 6px;
}
.esdp-progress-bar {
    background: #e2e8f0;
    border-radius: 6px;
    height: 10px;
    overflow: hidden;
}
.esdp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: 6px;
    transition: width .4s ease;
}

/* ---- Tables ---- */
.esdp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.esdp-table th {
    text-align: left;
    padding: 10px 12px;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    font-weight: 600;
    color: #475569;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .4px;
    white-space: nowrap;
}
.esdp-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}
.esdp-table tr:last-child td { border-bottom: none; }
.esdp-table tr:hover td { background: #f8fafc; }
.esdp-current-level td { background: #eff6ff !important; font-weight: 600; }

/* ---- Payout Grid ---- */
.esdp-payout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.esdp-payout-grid > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.esdp-lbl { font-size: 12px; color: #64748b; text-transform: uppercase; letter-spacing: .4px; }
.esdp-val { font-weight: 700; color: #1e293b; font-size: 15px; }
.esdp-val.esdp-pending { color: #d97706; }

/* ---- Status Badges ---- */
.esdp-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.esdp-status-active     { background: #d1fae5; color: #065f46; }
.esdp-status-inactive   { background: #f1f5f9; color: #64748b; }
.esdp-status-suspended  { background: #fee2e2; color: #991b1b; }
.esdp-status-pending    { background: #fef3c7; color: #92400e; }
.esdp-status-approved   { background: #dbeafe; color: #1e40af; }
.esdp-status-paid       { background: #d1fae5; color: #065f46; }
.esdp-status-rejected   { background: #fee2e2; color: #991b1b; }
.esdp-status-captured   { background: #e0f2fe; color: #0369a1; }
.esdp-status-attributed { background: #fef9c3; color: #854d0e; }
.esdp-status-qualified  { background: #dbeafe; color: #1e40af; }
.esdp-status-converted  { background: #dcfce7; color: #166534; }
.esdp-status-rewarded   { background: #d1fae5; color: #065f46; }

/* ---- Buttons ---- */
.esdp-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .15s;
    text-decoration: none;
}
.esdp-btn-primary {
    background: #1e40af;
    color: #fff !important;
    border-color: #1e40af;
}
.esdp-btn-primary:hover {
    background: #1e3a8a;
    color: #fff !important;
    text-decoration: none;
}
.esdp-btn-sm {
    padding: 5px 12px;
    font-size: 12px;
}
.esdp-btn.active { background: #1e40af; color: #fff !important; }

/* ---- Forms ---- */
.esdp-form .esdp-field {
    margin-bottom: 16px;
}
.esdp-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #374151;
}
.esdp-hint { font-weight: 400; color: #9ca3af; font-size: 12px; }
.esdp-input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color .15s;
    background: #fff;
    color: #1e293b;
}
.esdp-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}
textarea.esdp-input {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

/* ---- Copy Row ---- */
.esdp-field-group { margin-bottom: 20px; }
.esdp-field-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 6px;
}
.esdp-copy-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.esdp-copy-input {
    flex: 1;
    background: #f8fafc;
    color: #374151;
}

/* ---- Messages ---- */
.esdp-msg {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: 10px;
    display: none;
}
.esdp-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.esdp-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ---- Empty State ---- */
.esdp-empty {
    text-align: center;
    color: #94a3b8;
    padding: 32px;
    font-size: 14px;
    font-style: italic;
}

/* ================================================================
   Auth Form (Login / Register)
   ================================================================ */

.esdp-auth-wrap {
    max-width: 480px;
    margin: 40px auto;
    padding: 0 16px;
}

.esdp-auth-header {
    text-align: center;
    margin-bottom: 24px;
}
.esdp-auth-header .custom-logo {
    max-height: 56px;
    width: auto;
    margin-bottom: 12px;
}
.esdp-auth-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px;
}
.esdp-auth-subtitle {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}
.esdp-site-name {
    font-size: 22px;
    font-weight: 800;
    color: #1e40af;
    display: block;
    margin-bottom: 8px;
}

/* ---- Auth Tabs ---- */
.esdp-auth-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
    gap: 4px;
}
.esdp-auth-tab-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all .15s;
}
.esdp-auth-tab-btn.active {
    background: #fff;
    color: #1e40af;
    box-shadow: 0 1px 4px rgba(0,0,0,.10);
}
.esdp-auth-tab-btn:hover:not(.active) {
    color: #1e293b;
    background: #e2e8f0;
}

.esdp-auth-tab-content { display: none; }
.esdp-auth-tab-content.active { display: block; }

/* ---- Auth Card ---- */
.esdp-auth-card {
    padding: 28px 28px 24px;
}

/* ---- Field Row (two columns) ---- */
.esdp-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 420px) {
    .esdp-field-row { grid-template-columns: 1fr; }
}

/* ---- Input Wrap (for password toggle) ---- */
.esdp-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.esdp-input-wrap .esdp-input {
    padding-right: 42px;
}
.esdp-toggle-pass {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.5;
    padding: 0;
    line-height: 1;
    transition: opacity .15s;
}
.esdp-toggle-pass:hover { opacity: 1; }

/* ---- Password strength ---- */
.esdp-strength-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-top: 6px;
    overflow: hidden;
}
.esdp-strength-fill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    transition: width .3s ease, background .3s;
}
.esdp-strength-label {
    font-size: 11px;
    font-weight: 600;
    display: block;
    margin-top: 3px;
    min-height: 16px;
}

/* ---- Full-width button ---- */
.esdp-btn-full {
    width: 100%;
    text-align: center;
    margin-top: 4px;
    padding: 12px;
    font-size: 15px;
}

/* ---- Forgot password link ---- */
.esdp-forgot-link {
    float: right;
    font-size: 12px;
    font-weight: 400;
    color: #3b82f6;
    text-decoration: none;
}
.esdp-forgot-link:hover { text-decoration: underline; }

/* ---- Inline field (remember me) ---- */
.esdp-field-inline { margin-bottom: 12px; }
.esdp-checkbox-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    font-weight: 400 !important;
}
.esdp-checkbox-label input { cursor: pointer; }

/* ---- No registration notice ---- */
.esdp-auth-no-register {
    text-align: center;
    padding: 16px;
    color: #64748b;
    font-size: 14px;
}

/* ---- Required star ---- */
.esdp-auth-card .required { color: #ef4444; }

/* ================================================================
   Program Info Panel (guest + join pages)
   ================================================================ */

.esdp-portal .esdp-program-info,
.esdp-program-info {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 28px 32px !important;
    margin-bottom: 28px !important;
    list-style: none !important;
}

.esdp-portal .esdp-program-info__headline,
.esdp-program-info__headline {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 0 0 10px !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.esdp-portal .esdp-program-info__desc,
.esdp-program-info__desc {
    font-size: 15px !important;
    color: #bfdbfe !important;
    margin: 0 0 18px !important;
    line-height: 1.6 !important;
    background: none !important;
}

.esdp-portal .esdp-program-info__bullets,
.esdp-program-info__bullets {
    list-style: none !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 8px 16px !important;
    background: none !important;
}

.esdp-portal .esdp-program-info__bullets li,
.esdp-program-info__bullets li {
    font-size: 14px !important;
    color: #e0f2fe !important;
    padding-left: 22px !important;
    position: relative !important;
    line-height: 1.5 !important;
    list-style: none !important;
    background: none !important;
    margin: 0 !important;
}

.esdp-portal .esdp-program-info__bullets li::before,
.esdp-program-info__bullets li::before {
    content: "\2713" !important;
    position: absolute !important;
    left: 0 !important;
    color: #4ade80 !important;
    font-weight: 700 !important;
}

/* Commission levels table inside info panel */
.esdp-portal .esdp-program-info__levels h4,
.esdp-program-info__levels h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #93c5fd !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    margin: 0 0 10px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.esdp-portal .esdp-program-info__table,
.esdp-program-info__table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 13px !important;
    background: none !important;
}

.esdp-portal .esdp-program-info__table th,
.esdp-program-info__table th {
    text-align: left !important;
    color: #93c5fd !important;
    font-weight: 600 !important;
    padding: 6px 10px !important;
    border-bottom: 1px solid rgba(255,255,255,.15) !important;
    white-space: nowrap !important;
    background: none !important;
}

.esdp-portal .esdp-program-info__table td,
.esdp-program-info__table td {
    padding: 8px 10px !important;
    color: #e2e8f0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    vertical-align: middle !important;
    background: none !important;
}

.esdp-portal .esdp-program-info__table td strong,
.esdp-program-info__table td strong {
    color: #4ade80 !important;
    font-size: 15px !important;
}

.esdp-program-info__table em {
    font-style: normal;
    color: #94a3b8;
    font-size: 12px;
}

.esdp-program-info__table tbody tr:last-child td {
    border-bottom: none;
}

/* Wider layout for join page */
.esdp-join-wrap .esdp-program-info {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 540px) {
    .esdp-program-info { padding: 20px 18px !important; }
    .esdp-program-info__headline { font-size: 18px !important; }
    .esdp-program-info__bullets { grid-template-columns: 1fr !important; }
}

/* ================================================================
   Application Pending / Rejected States
   ================================================================ */

.esdp-pending-wrap,
.esdp-rejected-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 20px 0;
}

.esdp-pending-card,
.esdp-rejected-card {
    text-align: center;
    padding: 48px 36px;
}

.esdp-pending-icon,
.esdp-rejected-icon {
    font-size: 52px;
    line-height: 1;
    margin-bottom: 18px;
}

.esdp-pending-card h2,
.esdp-rejected-card h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.esdp-pending-card p,
.esdp-rejected-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 10px;
}

.esdp-pending-meta {
    font-size: 13px !important;
    color: #64748b !important;
}

.esdp-pending-note {
    font-size: 13px !important;
    color: #94a3b8 !important;
    font-style: italic;
    margin-top: 16px !important;
}

.esdp-rejected-reason {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #991b1b;
    margin: 14px 0;
    text-align: left;
}

/* ================================================================
   Pagination
   ================================================================ */

.esdp-pagination {
    margin-top: 16px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.esdp-pagination .esdp-btn-sm {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}
.esdp-pagination .esdp-btn-sm.active {
    background: #1e40af;
    color: #fff;
    border-color: #1e40af;
}

/* ================================================================
   QR Code & Short Link Display
   ================================================================ */

.esdp-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.esdp-qr-wrap img {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px;
    background: #fff;
    display: block;
}
.esdp-qr-wrap a {
    font-size: 12px;
    color: #3b82f6;
    text-decoration: none;
}
.esdp-qr-wrap a:hover { text-decoration: underline; }

.esdp-link-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.esdp-link-row code {
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #334155;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ================================================================
   Dashboard Sections (Overview, Rewards How-It-Works)
   ================================================================ */

.esdp-how-it-works {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 12px;
}
@media (max-width: 600px) {
    .esdp-how-it-works { grid-template-columns: 1fr; }
}
.esdp-how-step {
    text-align: center;
    padding: 16px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.esdp-how-step-icon {
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1;
}
.esdp-how-step h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 5px;
}
.esdp-how-step p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ================================================================
   Create Forms (Links / Campaigns tabs)
   ================================================================ */

.esdp-create-form-wrap {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}
.esdp-create-form-wrap h4 {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}
.esdp-create-form-wrap .esdp-field {
    margin-bottom: 12px;
}
.esdp-create-form-wrap label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .3px;
}
