.cvc-otp-card {
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.cvc-otp-header h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 800;
}

.cvc-otp-header p {
    font-size: 14px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cvc-input-group {
    position: relative;
    margin-bottom: 25px;
}

.cvc-input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 20px;
    transition: color 0.3s ease;
}

.cvc-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-sizing: border-box;
    background: #fdfdfd;
}

.cvc-input:focus {
    border-color: #007bff;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.12);
}

.cvc-input:focus+.cvc-input-icon {
    color: #007bff;
}

.cvc-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.cvc-btn-primary {
    /* Styles handled by Elementor */
}

.cvc-btn-secondary {
    /* Styles handled by Elementor */
}

.cvc-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.cvc-btn-text {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
    padding: 5px;
}

.cvc-btn-text:hover {
    color: #111;
}

.cvc-spinner {
    font-size: 20px;
}

.cvc-otp-step {
    animation: slideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-msg {
    color: #1a531b;
    background: #e9f7ef;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 14px;
    border: 1px solid #d4efdf;
}

#otp-message p.error {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 12px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 14px;
}