.wrap {
    padding: 1.5rem 0;
}

.otp-card {
    background: var(--bg-content-color);
    border-radius: 5px;
    padding: 1.5rem;
    max-width: 480px;
}

.otp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--base-red);
    color: var(--bg-content-color);
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.15s;
}

.otp-btn-primary:hover {
    opacity: 0.85;
}

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

.status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-icon.unconfirmed {
    background: #FAECE7;
}

.status-icon.confirmed {
    background: #EAF3DE;
}

.status-icon svg {
    width: 16px;
    height: 16px;
}

.status-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--base-blue-daker);
}

.status-sublabel {
    font-size: 13px;
    color: var(--base-blue-daker);
    margin-top: 2px;
}

.phone-display {
    font-size: 15px;
    font-weight: 500;
    color: var(--base-blue-daker);
    letter-spacing: 0.3px;
}

.otp-section.visible {
    display: block;
}

.otp-label {
    font-size: 15px;
    color: var(--base-blue-daker);
    margin-bottom: 15px;
}

.otp-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.otp-inputs input {
    width: 25%;
    height: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    border: 0.5px solid var(--base-blue-daker);
    border-radius: 5px;
    color: var(--base-blue-daker);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    caret-color: transparent;
}

.otp-inputs input:focus {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(12, 146, 21, 0.25);
}

.otp-inputs input.filled {
    border-color: var(--base-blue-daker);
}

.otp-inputs input.error {
    border-color: #D85A30;
    box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.12);
}

.otp-inputs input:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.resend-label {
    font-size: 13px;
    color: var(--base-blue-daker);
    margin-bottom: 10px;
}

.timer-text {
    font-size: 13px;
    color: var(--base-blue-daker);
    display: flex;
    align-items: center;
    gap: 6px;
}

.resend-btns {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-resend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--base-blue-daker);
    background-color: white;
    border: 0.5px solid var(--base-blue-daker);
    border-radius: 5px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-resend:hover {
    opacity: 0.85;
}

.btn-resend:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-resend svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.verify-btn-row {
    margin-bottom: 1rem;
}