/* Positioning container */
.woocommerce-form-row:has(#account_email),
.woocommerce-form-row:has(#billing_phone) {
    position: relative;
}

/* Make room inside the input for the badge */
#account_email,
#billing_phone {
    padding-right: 105px !important;
}

/* Badge */
.woocommerce-form-row:has(#account_email)::after,
.woocommerce-form-row:has(#billing_phone)::after {
    position: absolute;
    right: 16px;
    bottom: 30px !important;

    display: inline-flex;
    align-items: center;

    padding: 3px 8px;
    border-radius: 20px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;

    pointer-events: none;
    white-space: nowrap;
}

/* Verified */
.woocommerce-form-row.dc-verified:has(#account_email)::after,
.woocommerce-form-row.dc-verified:has(#billing_phone)::after {
    content: "✓ Validado";
    color: #16794b;
    background: #e7f7ef;
}

/* Pending */
.woocommerce-form-row.dc-pending:has(#account_email)::after,
.woocommerce-form-row.dc-pending:has(#billing_phone)::after {
    content: "Sin validar";
    color: #946200;
    background: #fff4d6;
}

/* Resend code button */
.resend-btn {
    background: gray !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: none !important;
    opacity: 0.7;
    white-space: nowrap;
    padding-top: 13px !important;
}