.otp-divider {
    position: relative;
    text-align: center;
    margin: 28px 0 20px;
    color: var(--text3, #606878);
    font-size: 12px;
}

.otp-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-50%);
}

.otp-divider span {
    position: relative;
    background: var(--card, #0F1319);
    padding: 0 12px;
}

.otp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px;
    margin-top: 4px;
}

.otp-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text1, #E8ECF4);
    margin-bottom: 6px;
}

.otp-card-sub {
    font-size: 13px;
    color: var(--text3, #606878);
    margin-bottom: 16px;
    line-height: 1.6;
}

.otp-input-group {
    margin-bottom: 14px;
}

.otp-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text2, #A0AAB8);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.otp-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.otp-prefix {
    padding: 0 12px;
    font-size: 13px;
    color: var(--text3, #606878);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    height: 46px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.otp-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text1, #E8ECF4);
    width: 100%;
}

.otp-input-wrap .otp-input {
    border: none;
}

.otp-input-group > .otp-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
}

.otp-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.otp-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s;
}

.otp-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.otp-btn.sms {
    background: var(--green, #0ECB81);
    color: #000;
}

.otp-btn.wa {
    background: #25D366;
    color: #000;
}

.otp-btn:not(:disabled):hover {
    opacity: 0.88;
}
