/* Step 2 Wallet Verification styles */

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 0 32px;
    padding: 0 0 24px;
    border-bottom: 1px solid #e1e1e1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-step__circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    background: #e1e1e1;
    color: #5c5c5c;
    transition: all 0.2s ease;
}

.progress-step__circle svg {
    width: 18px;
    height: 18px;
}

.progress-step--complete .progress-step__circle {
    background: #1a7f37;
    color: #fff;
}

.progress-step--active .progress-step__circle {
    background: #14559b;
    color: #fff;
}

.progress-step__label {
    font-size: 12px;
    font-weight: 600;
    color: #5c5c5c;
    text-align: center;
    line-height: 1.4;
}

.progress-step__label small {
    font-weight: 400;
    color: #8a8a8a;
}

.progress-step--complete .progress-step__label {
    color: #1a7f37;
}

.progress-step--active .progress-step__label {
    color: #14559b;
}

.progress-connector {
    width: 60px;
    height: 3px;
    background: #e1e1e1;
    margin: -16px 8px 0;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.progress-connector--complete {
    background: #1a7f37;
}

/* Wallet verification section */
.wallet-verification {
    margin: 24px 0;
    padding: 28px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background: #fafafa;
}

.wallet-verification__status {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 0 24px;
    gap: 8px;
}

.wallet-verification__status-icon {
    color: #565c65;
    margin-bottom: 4px;
}

.wallet-verification__status-icon--connected {
    color: #1a7f37;
}

.wallet-verification__status-text {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0;
}

.wallet-verification__status-text--connected {
    color: #1a7f37;
}

.wallet-verification__status-sub {
    font-size: 13px;
    color: #6b6b6b;
    margin: 0;
}

.wallet-verification__status--connected {
    background: #f0f9f4;
    border: 1px solid #b8dfc8;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Wallet actions */
.wallet-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 8px 0 16px;
}

.wallet-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    color: #8a8a8a;
    font-size: 13px;
}

.wallet-divider::before,
.wallet-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #dcdcdc;
}

/* Buttons */
.btn--wallet {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #14559b;
    color: #fff;
    border: 0;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.btn--wallet:hover {
    background: #0f4477;
}

.btn--secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #14559b;
    border: 1.5px solid #14559b;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 26px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn--secondary:hover {
    background: #14559b;
    color: #fff;
}

.btn--outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #14559b;
    border: 1.5px solid #14559b;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
}

.btn--outline:hover {
    background: #14559b;
    color: #fff;
}

.btn--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #9a9a9a;
}

.btn--disabled:hover {
    background: #9a9a9a;
}

.btn--success {
    background: #1a7f37;
}

.btn--success:hover {
    background: #14682c;
}

.btn__icon {
    display: inline-flex;
    align-items: center;
}

.btn__icon svg {
    width: 20px;
    height: 20px;
}

/* Form actions */
.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.form-actions--center {
    justify-content: center;
    align-items: center;
}

/* Wallet info */
.wallet-info {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e1e1;
}

.wallet-info__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #3b3b3b;
    line-height: 1.5;
}

.wallet-info__icon {
    flex: 0 0 20px;
    font-size: 16px;
    margin-top: 1px;
}

/* Notice step 2 variant */
.notice--step2 {
    border-left-color: #1a7f37;
    background: #f0f9f4;
}

.notice--step2 .notice__title {
    color: #1a7f37;
}

/* Responsive */
@media (max-width: 640px) {
    .progress-bar {
        padding: 0 0 16px;
    }

    .progress-connector {
        width: 30px;
    }

    .progress-step__label {
        font-size: 11px;
    }

    .wallet-verification {
        padding: 18px;
    }

    .wallet-actions {
        gap: 10px;
    }

    .btn--wallet,
    .btn--secondary {
        font-size: 15px;
        padding: 12px 20px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}