.otp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.otp-panel {
    width: 420px;
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.otp-title {
    font-size: 22px;
    font-weight: 600;
}

.otp-subtext {
    font-size: 14px;
    color: #6b7280;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.otp-box {
    width: 46px;
    height: 54px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
}

.otp-box:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,.15);
    outline: none !important;
}

.otp-actions {
    display: flex;
    gap: 12px;
}

.otp-cancel,
.otp-verify {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
}
