
<!--
.ip-form-root {
    font-family: 'Poppins', sans-serif;
    color: #030303;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 520px;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.ip-progress {
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 48px;
}

.ip-progress-fill {
    height: 100%;
    background: #2563eb;
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    width: 12.5%;
}

.ip-form-area {
    position: relative;
    min-height: 380px;
}

.ip-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ip-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.ip-q {
    font-size: clamp(1.2rem, 3vw, 1.45rem);
    font-weight: 500;
    line-height: 1.45;
    color: #030303;
    margin-bottom: 28px;
}

.ip-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ip-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #f7f7f7;
    border: 1.5px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.ip-option:hover {
    background: #f0f0f0;
}

.ip-option.selected {
    border-color: #2563eb;
    background: #eef4ff;
}

.ip-option-key {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1.5px solid #e2e2e2;
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    flex-shrink: 0;
    transition: all 0.15s ease;
    background: #fff;
}

.ip-option.selected .ip-option-key {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}

.ip-option-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: #030303;
}

.ip-text-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e2e2e2;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #030303;
    outline: none;
    transition: border-color 0.25s ease;
}

.ip-text-input::placeholder {
    color: #999;
    font-weight: 300;
}

.ip-text-input:focus {
    border-bottom-color: #030303;
}

.ip-textarea {
    width: 100%;
    background: #f7f7f7;
    border: 1.5px solid #e2e2e2;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #030303;
    outline: none;
    resize: none;
    min-height: 100px;
    line-height: 1.6;
    transition: border-color 0.25s ease;
}

.ip-textarea::placeholder {
    color: #999;
    font-weight: 300;
}

.ip-textarea:focus {
    border-color: #030303;
}

.ip-error {
    font-size: 0.8rem;
    color: #dc2626;
    margin-top: 8px;
    display: none;
    font-weight: 400;
}

.ip-error.visible {
    display: block;
}

.ip-btn-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.ip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    outline: none;
}

.ip-btn:hover {
    background: #1d4ed8;
}

.ip-btn:active {
    transform: scale(0.98);
}

.ip-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.ip-btn svg {
    width: 15px;
    height: 15px;
}

.ip-nav {
    display: flex;
    gap: 6px;
    margin-top: 40px;
}

.ip-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f7f7f7;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    color: #555;
    cursor: pointer;
    transition: all 0.15s ease;
}

.ip-nav button:hover {
    background: #f0f0f0;
    color: #030303;
}

.ip-nav button:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.ip-nav button svg {
    width: 16px;
    height: 16px;
}

.ip-dq-msg {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 400;
}

.ip-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ip-spin 0.6s linear infinite;
}

@keyframes ip-spin {
    to { transform: rotate(360deg); }
}

.ip-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 2px solid #16a34a;
    margin-bottom: 20px;
    animation: ip-pop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ip-success-icon svg {
    width: 24px;
    height: 24px;
    color: #16a34a;
}

@keyframes ip-pop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 640px) {
    .ip-form-root { min-height: 460px; }
    .ip-progress { margin-bottom: 36px; }
    .ip-q { font-size: 1.15rem; }
    .ip-option { padding: 14px 16px; }
}
-->