.phn-pv-verifier {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box
}

.phn-pv-box {
    width: 100%;
    max-width: 520px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
    box-sizing: border-box;
    text-align: center
}

.phn-pv-box h2 {
    margin: 0 0 8px;
    font-size: 28px
}

.phn-pv-box p {
    margin: 0 0 22px;
    color: #666
}

.phn-pv-box label {
    display: block;
    text-align: left;
    font-weight: 600;
    margin-bottom: 7px
}

.phn-pv-box input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #ccd0d4;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.phn-pv-box button {
    width: 100%;
    padding: 13px 16px;
    border: 0;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer
}

.phn-pv-box button:disabled {
    opacity: .6;
    cursor: not-allowed
}

.phn-pv-result {
    margin-top: 18px;
    padding: 14px;
    border-radius: 8px;
    display: none;
    line-height: 1.5
}

.phn-pv-result.success {
    display: block;
    background: #ecfdf3;
    border: 1px solid #86efac;
    color: #166534
}

.phn-pv-result.error {
    display: block;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b
}

.phn-pv-box label {
    margin-top: 4px
}

.phn-pv-box input[type=email],
.phn-pv-box input[type=tel] {
    letter-spacing: 0
}

.phn-pv-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    align-items: center;
    justify-content: center
}

.phn-pv-modal.is-open {
    display: flex
}

.phn-pv-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6)
}

.phn-pv-modal-content {
    position: relative;
    z-index: 2;
    width: min(92%, 460px);
    box-sizing: border-box;
    padding: 34px 28px 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    text-align: center
}

.phn-pv-modal-close {
    display: none;
    position: absolute;
    right: 12px;
    top: 8px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #555
}

.phn-pv-modal-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    background: #f3f4f6;
    color: #111
}

.phn-pv-modal.success .phn-pv-modal-icon {
    background: #dcfce7;
    color: #166534
}

.phn-pv-modal.error .phn-pv-modal-icon {
    background: #fee2e2;
    color: #991b1b
}

.phn-pv-modal-content h3 {
    margin: 0 0 10px;
    font-size: 24px
}

.phn-pv-modal-content p {
    margin: 0 0 22px;
    color: #555;
    line-height: 1.6
}

.phn-pv-modal-ok {
    border: 0;
    border-radius: 8px;
    padding: 11px 30px;
    background: #111;
    color: #fff;
    font-weight: 600;
    cursor: pointer
}