/* Unified user flows: auth, profile, VIP, contact */
.wased-flow {
    padding: 28px 16px 48px;
    max-width: 960px;
    margin: 0 auto;
}

.wased-flow--wide {
    max-width: 1100px;
}

.wased-flow__card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.wased-flow__card--narrow {
    max-width: 480px;
    margin: 0 auto;
}

.wased-flow__card--medium {
    max-width: 640px;
    margin: 0 auto;
}

.wased-flow__header {
    text-align: center;
    padding: 28px 24px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.wased-flow__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: #0a0a0a;
    color: #fede8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.wased-flow__header h1 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.wased-flow__header p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.wased-flow__body {
    padding: 24px;
}

.wased-flow__foot {
    padding: 16px 24px 24px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fafafa;
}

.wased-flow__foot a {
    color: #0a0a0a;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wased-flow__foot a:hover {
    color: #03a588;
}

.wased-alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.wased-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.wased-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.wased-alert--warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.wased-alert ul {
    margin: 0;
    padding: 0 18px 0 0;
}

.wased-field {
    margin-bottom: 14px;
}

.wased-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    float: none;
    width: auto;
}

.wased-field-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

.wased-field .input-with-ico {
    position: relative;
}

.wased-field .input-with-ico span.fa {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 1;
}

.wased-field .form-control {
    width: 100%;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 40px 10px 12px;
    font-size: 15px;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-shadow: none;
}

.wased-field .form-control:focus {
    border-color: #03a588;
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 165, 136, 0.15);
}

.wased-field textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
    padding: 12px;
}

.wased-field--prefix .input-username label {
    position: absolute;
    right: auto;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #888;
    margin: 0;
    z-index: 1;
    white-space: nowrap;
}

.wased-field--prefix .input-username input {
    padding-left: 88px;
}

.wased-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 10px;
    background: #0a0a0a;
    color: #fede8a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}

.wased-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.wased-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.wased-btn--gold {
    background: linear-gradient(135deg, #c9a227 0%, #fede8a 50%, #c9a227 100%);
    color: #111;
}

.wased-btn--gold:hover {
    color: #000;
    filter: brightness(1.05);
}

.wased-btn--outline {
    background: transparent;
    border: 2px solid #0a0a0a;
    color: #0a0a0a;
}

.wased-btn--outline:hover {
    background: #0a0a0a;
    color: #fede8a;
}

.wased-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 14px;
    font-size: 14px;
}

.wased-link-row a {
    color: #03a588;
    text-decoration: none;
}

.wased-link-row a:hover {
    text-decoration: underline;
}

.wased-register-banner {
    margin-top: 16px;
    padding: 14px;
    border-radius: 10px;
    background: #fff8eb;
    border: 1px solid #fde8b0;
    text-align: center;
}

.wased-register-banner a {
    color: #111;
    font-weight: 700;
}

/* VIP packages */
.wased-vip-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 768px) {
    .wased-vip-hero {
        grid-template-columns: 1fr;
    }
}

.wased-vip-profile {
    text-align: center;
    padding: 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 14px;
    color: #fede8a;
}

.wased-vip-profile img.profile_image {
    border-radius: 50%;
    border: 3px solid #fede8a;
}

.wased-vip-profile h2 {
    margin: 12px 0 0;
    font-size: 18px;
    color: #fff;
}

.wased-vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(254, 222, 138, 0.15);
    font-size: 13px;
}

.wased-vip-box {
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
}

.wased-vip-box__head {
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
}

.wased-vip-box__head .price {
    font-size: 36px;
    font-weight: 800;
    color: #fede8a;
    margin: 8px 0;
}

.wased-vip-box__head .price span {
    font-size: 16px;
    font-weight: 400;
}

.wased-vip-box__content {
    padding: 20px 24px;
    line-height: 1.8;
    color: #444;
}

.wased-vip-steps {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.wased-vip-step {
    flex: 1;
    min-width: 140px;
    padding: 14px;
    border-radius: 10px;
    background: #f7f7f7;
    text-align: center;
    font-size: 13px;
}

.wased-vip-step strong {
    display: block;
    font-size: 20px;
    color: #03a588;
    margin-bottom: 4px;
}

.wased-vip-step--cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #fde68a;
    background: #fffbeb;
}

.wased-vip-page__request-btn {
    width: 100%;
    max-width: 280px;
    margin-top: 4px;
}

.wased-vip-page__contact-note {
    text-align: center;
    color: #64748b;
    margin: 16px 0 0;
    font-size: 14px;
}

.wased-vip-active {
    padding: 20px;
    text-align: center;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 14px;
}

.wased-vip-active h2 {
    color: #065f46;
    margin: 0 0 8px;
}

.wased-vip-page__header {
    text-align: center;
}

.wased-vip-page__lead {
    margin: 0 auto;
    max-width: 520px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    color: #1e293b;
}

@media (min-width: 768px) {
    .wased-vip-page__lead {
        font-size: 26px;
    }
}

.wased-vip-page__crown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #3d3420 0%, #1a1508 55%, #0a0804 100%);
    border: 2px solid #fede8a;
    box-shadow:
        0 0 20px rgba(254, 222, 138, 0.45),
        0 8px 24px rgba(254, 222, 138, 0.25);
    animation: wased-crown-pulse 2.8s ease-in-out infinite;
}

.wased-vip-page__crown img {
    width: 56%;
    height: 56%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(254, 222, 138, 0.95)) brightness(1.15);
}

.wased-vip-page__crown--inline {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
}

.wased-vip-page__crown--inline img {
    width: 58%;
    height: 58%;
}

.wased-vip-badge img,
.wased-btn--gold img[src*="crown"] {
    filter: drop-shadow(0 0 4px rgba(254, 222, 138, 0.8)) brightness(1.1);
}

@keyframes wased-crown-pulse {
    0%, 100% {
        box-shadow:
            0 0 16px rgba(254, 222, 138, 0.35),
            0 8px 20px rgba(254, 222, 138, 0.2);
    }
    50% {
        box-shadow:
            0 0 28px rgba(254, 222, 138, 0.75),
            0 0 48px rgba(230, 184, 77, 0.35),
            0 8px 24px rgba(254, 222, 138, 0.35);
    }
}

.wased-vip-page__duration {
    font-size: 18px;
    font-weight: 700;
    color: #fede8a !important;
    margin: 4px 0 0;
}

.wased-vip-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wased-vip-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    line-height: 1.6;
}

.wased-vip-features li:last-child {
    border-bottom: 0;
}

.wased-vip-features .fa-check {
    color: #03a588;
    margin-top: 4px;
    flex-shrink: 0;
}

.wased-free-tier-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 16px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
    font-size: 14px;
    line-height: 1.5;
}

.wased-member-form .wased-alert {
    margin-bottom: 16px;
}

.wased-free-tier-notice strong {
    white-space: nowrap;
    font-size: 15px;
}

.wased-member-form .add-social-acc.free-limit-locked {
    opacity: 0.55;
    pointer-events: none;
    filter: grayscale(0.2);
}

.wased-member-form .add-social-acc.free-limit-locked::after {
    content: '';
}

/* Account dashboard */
.wased-dash {
    padding: 28px 16px 48px;
    max-width: 720px;
    margin: 0 auto;
}

.wased-dash__profile {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.wased-dash__avatar {
    position: relative;
    flex-shrink: 0;
}

.wased-dash__avatar img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.wased-dash__avatar .vip-crown {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
}

.wased-dash__info h2 {
    margin: 0 0 6px;
    font-size: 20px;
}

.wased-dash__info p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.wased-dash__private {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 14px;
}

.wased-dash__private-head h3 {
    margin: 0 0 6px;
    font-size: 17px;
    color: #0f172a;
}

.wased-dash__private-head p {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.wased-dash__private-list {
    margin: 0 0 14px;
    display: grid;
    gap: 12px;
}

.wased-dash__private-list div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.wased-dash__private-list dt {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

.wased-dash__private-list dd {
    margin: 0;
    font-size: 15px;
    color: #0f172a;
    word-break: break-all;
    min-height: 1.25em;
}

.wased-dash__private-list dd.is-empty:empty::before {
    content: '';
}

.wased-dash__private-edit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #03a588;
    text-decoration: none;
}

.wased-member-private {
    margin: 20px 0;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 14px;
}

.wased-member-private__note {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.wased-member-private__grid {
    display: grid;
    gap: 14px;
}

@media (min-width: 640px) {
    .wased-member-private__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.wased-dash__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .wased-dash__profile {
        flex-direction: column;
        text-align: center;
    }

    .wased-dash__actions {
        grid-template-columns: 1fr;
    }
}

.wased-dash__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.wased-dash__action:hover {
    border-color: #03a588;
    box-shadow: 0 4px 16px rgba(3, 165, 136, 0.12);
    color: #111;
}

.wased-dash__action i,
.wased-dash__action img {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #03a588;
}

.wased-dash__action span {
    font-size: 13px;
    font-weight: 600;
}

.wased-dash__action--vip {
    background: linear-gradient(180deg, #fffbeb, #fff);
    border-color: #fede8a;
}

.wased-dash__action--vip i {
    color: #c9a227;
}

/* Contact VIP banner */
.wased-vip-banner {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
}

.wased-vip-banner img {
    width: 36px;
    flex-shrink: 0;
}

.wased-vip-banner h3 {
    margin: 0 0 4px;
    font-size: 15px;
    color: #fede8a;
}

.wased-vip-banner p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Member profile block (edit) */
.wased-member-profile {
    display: grid;
    grid-template-columns: minmax(140px, 200px) 1fr;
    gap: 24px;
    align-items: start;
    margin-bottom: 28px;
    padding: 20px;
    background: #f8fafb;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.wased-member-profile__photo {
    text-align: center;
}

.wased-member-profile__photo p {
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.wased-member-profile__fields {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wased-member-profile__fields .wased-field {
    margin-bottom: 12px;
}

.wased-member-profile .wased-photo-upload {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.wased-member-profile .profile_image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid #e2e8f0;
    object-fit: cover;
}

.wased-member-profile .wased-photo-upload span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: -20px auto 0;
    background: #0a0a0a;
    color: #fede8a;
    border-radius: 50%;
    border: 2px solid #fff;
}

.wased-member-social {
    margin-bottom: 8px;
}

.wased-member-form__actions {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.wased-member-form__actions .wased-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: flex;
}

.wased-field .input-with-ico--textarea span.fa {
    top: 16px;
    transform: none;
}

.wased-field .input-with-ico--textarea textarea.form-control {
    min-height: 96px;
    padding: 12px 40px 12px 12px;
    resize: vertical;
    line-height: 1.6;
}

.wased-section-title .fa {
    margin-left: 6px;
    color: #03a588;
}

@media (max-width: 640px) {
    .wased-member-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wased-member-profile__fields {
        text-align: right;
    }

    .wased-member-form__actions .wased-btn {
        max-width: none;
    }
}

.wased-required {
    color: #dc2626;
    font-weight: 600;
}

/* Member form inside flow */
.wased-member-form .add_image {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px;
    background: #f8fafb;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
}

.wased-member-form .add_image label,
.wased-member-form .wased-photo-upload {
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.wased-member-form .wased-photo-upload input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* Override legacy 0x0 hidden file input */
.wased-member-form.form-horizontal .add_image label input[type="file"] {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    overflow: visible !important;
}

.wased-member-form .add_image .profile_image {
    border-radius: 50%;
    border: 3px solid #e2e8f0;
    object-fit: cover;
}

.wased-member-form .add_image span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: -20px auto 0;
    background: #0a0a0a;
    color: #fede8a;
    border-radius: 50%;
    border: 2px solid #fff;
}

.wased-member-form .add_image p {
    margin: 10px 0 0;
    font-weight: 600;
    color: #334155;
}

.wased-member-form .form-group {
    margin-bottom: 16px;
}

.wased-member-form .input-with-ico span.fa {
    color: #94a3b8 !important;
}

.wased-member-form .input-with-ico .form-control,
.wased-member-form select.form-control {
    height: 46px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    color: #111;
    background: #fff;
    font-size: 15px;
}

.wased-member-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0;
    padding: 16px;
    background: #f8fafb;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .wased-member-meta {
        grid-template-columns: 1fr;
    }
}

.wased-member-meta .wased-field label {
    color: #1e293b;
    font-weight: 700;
}

.wased-member-gender {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.wased-member-gender label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    color: #334155;
    margin: 0;
    float: none;
    width: auto;
}

.wased-member-gender input:checked + i,
.wased-member-gender label:has(input:checked) {
    border-color: #03a588;
    background: #ecfdf5;
    color: #065f46;
}

.wased-member-form h3.wased-section-title {
    margin: 24px 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    padding-bottom: 8px;
    border-bottom: 2px solid #fede8a;
}

.wased-member-form .add-social-icons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .wased-member-form .add-social-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wased-member-form .add-social-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wased-member-form .wased-link-wrap {
    width: 100%;
}

.wased-member-form .add-social-acc {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.wased-member-form .add-social-acc:has(.ico-checkbox:checked),
.wased-member-form .add-social-acc:has(.add-social-box.active) {
    border-color: #03a588;
    box-shadow: 0 4px 14px rgba(3, 165, 136, 0.12);
}

.wased-member-form .add-social-acc .add-social-box .social-box-h label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    line-height: 1.4;
    color: #0f172a !important;
    font-weight: 600;
}

.wased-member-form .add-social-acc .social-box-h .image {
    max-width: 36px;
    margin: 0 !important;
    flex-shrink: 0;
}

.wased-member-form .add-social-acc .social-box-h p {
    flex: 1;
    margin: 0 !important;
    font-size: 14px;
    color: #1e293b;
}

.wased-member-form .add-social-acc .social-box-h span {
    position: static !important;
    color: #94a3b8 !important;
    font-size: 22px !important;
}

.wased-member-form .add-social-acc input:checked ~ .add-social-box .social-box-h span,
.wased-member-form .add-social-acc .add-social-box.active .social-box-h span {
    color: #03a588 !important;
}

.wased-member-form .add-social-acc .social-box-c {
    max-height: 0;
    overflow: hidden;
    border-top: 0 solid #e2e8f0;
    transition: max-height 0.3s ease;
}

.wased-member-form .add-social-acc input:checked ~ .add-social-box .social-box-c,
.wased-member-form .add-social-acc .add-social-box.active .social-box-c {
    max-height: 96px;
    border-top-width: 1px;
}

.wased-member-form .add-social-acc .social-box-c > div {
    padding: 14px 16px !important;
}

/* رابط المنصة — شكل عريض مستدير (مثل حقل URL الحديث) */
.wased-member-form .wased-link-input,
.wased-member-form .add-social-acc .social-box-c input.form-control {
    display: block;
    width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
    min-height: 50px;
    height: auto;
    padding: 14px 18px !important;
    margin: 0;
    border: 1px solid #d1d5db !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.4;
    direction: ltr;
    text-align: left;
    float: none;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.wased-member-form .wased-link-input::placeholder,
.wased-member-form .add-social-acc .social-box-c input.form-control::placeholder {
    color: #94a3b8;
    direction: rtl;
    text-align: right;
}

.wased-member-form .wased-link-input:focus,
.wased-member-form .add-social-acc .social-box-c input.form-control:focus {
    outline: none;
    border-color: #03a588 !important;
    box-shadow: 0 0 0 3px rgba(3, 165, 136, 0.12);
    background: #fff !important;
}

.wased-member-form .wased-link-input:disabled {
    background: #f1f5f9 !important;
    color: #94a3b8;
    cursor: not-allowed;
}

.wased-member-form .add-social-acc.vip-only {
    background: #fffbeb;
    border-color: #fde68a;
}

.wased-member-form .add-social-acc.vip-only .social-box-h b {
    position: static !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #92400e !important;
    margin-right: auto;
}

.wased-member-form .radio-inline-lg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.wased-recaptcha {
    display: flex;
    justify-content: center;
    margin: 16px 0;
}
