/* Виджет верификации телефона через Zvonok — register.html и др. */
.pv-phone-wrap {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    transition: border-color .2s;
    background: #fff;
}
.pv-phone-wrap:focus-within { border-color: #667eea; }
.pv-phone-icon { color: #94a3b8; font-size: 1rem; margin-right: 6px; }
.pv-phone-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 4px;
    font-size: .97rem;
    width: 100%;
}
.pv-code-inputs { display: flex; gap: 10px; justify-content: center; margin: 10px 0; }
.pv-digit {
    width: 52px;
    height: 56px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    outline: none;
    transition: border-color .2s;
}
.pv-digit:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, .15);
}
.pv-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: .9rem;
    width: 100%;
    cursor: pointer;
    transition: opacity .2s;
    margin-top: 8px;
}
.pv-btn:disabled { opacity: .5; cursor: not-allowed; }
.pv-btn:not(:disabled):hover { opacity: .9; }
.pv-timer { text-align: center; font-size: .82rem; color: #64748b; margin-top: 8px; }
.pv-retry-lnk { color: #667eea; cursor: pointer; text-decoration: underline; }
.pv-err { color: #dc3545; font-size: .85rem; margin-top: 6px; display: none; }
.pv-call-hint {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: .9rem;
    color: #475569;
}
.pv-verified-msg {
    color: #15803d;
    font-weight: 600;
    font-size: .93rem;
    margin-top: 4px;
}
